- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
734 B
PHP
Executable File
27 lines
734 B
PHP
Executable File
<?php
|
|
/**
|
|
* Template to show the ad.
|
|
*
|
|
* @package Advanced_Ads_Pro
|
|
*
|
|
* @var string $placement_content content of the placement.
|
|
* @var string $public_slug public slug or placement ID send as $_GET['p'] to allow placement-specific usage of the hooks.
|
|
*/
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<?php do_action( 'advanced-ads-pro-ad-server-template-head', $public_slug ); ?>
|
|
</head>
|
|
<body style="margin: 0;" >
|
|
<?php do_action( 'advanced-ads-pro-ad-server-template-after-opening-body', $public_slug ); ?>
|
|
<?php
|
|
// phpcs:ignore
|
|
echo $placement_content;
|
|
?>
|
|
<?php do_action( 'advanced-ads-pro-ad-server-template-before-closing-body', $public_slug ); ?>
|
|
</body>
|
|
</html>
|