- 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>
97 lines
4.0 KiB
PHP
Executable File
97 lines
4.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Pro placements upgrade notice.
|
|
*
|
|
* @package Advanced_Ads
|
|
* TODO: move the array somewhere else.
|
|
*/
|
|
|
|
use AdvancedAds\Admin\Upgrades;
|
|
|
|
$pro_placements = [
|
|
// ad injection on random position.
|
|
'post_content_random' => [
|
|
'title' => __( 'Random Paragraph', 'advanced-ads' ),
|
|
'description' => __( 'After a random paragraph in the main content.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/content-random.png',
|
|
],
|
|
// ad injection above the post headline.
|
|
'post_above_headline' => [
|
|
'title' => __( 'Above Headline', 'advanced-ads' ),
|
|
'description' => __( 'Above the main headline on the page (<h1>).', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/content-above-headline.png',
|
|
],
|
|
// ad injection in the middle of a post.
|
|
'post_content_middle' => [
|
|
'title' => __( 'Content Middle', 'advanced-ads' ),
|
|
'description' => __( 'In the middle of the main content based on the number of paragraphs.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/content-middle.png',
|
|
],
|
|
// ad injection at a hand selected element in the frontend.
|
|
'custom_position' => [
|
|
'title' => __( 'Custom Position', 'advanced-ads' ),
|
|
'description' => __( 'Attach the ad to any element in the frontend.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/custom-position.png',
|
|
],
|
|
// ad injection between posts on archive and category pages.
|
|
'archive_pages' => [
|
|
'title' => __( 'Post Lists', 'advanced-ads' ),
|
|
'description' => __( 'Display the ad between posts on post lists, e.g. home, archives, search etc.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/post-list.png',
|
|
],
|
|
'background' => [
|
|
'title' => __( 'Background Ad', 'advanced-ads' ),
|
|
'description' => __( 'Background of the website behind the main wrapper.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/background.png',
|
|
],
|
|
];
|
|
// BuddyBoss & BuddyPress.
|
|
if ( defined( 'BP_PLATFORM_VERSION' ) ) { // BuddyBoss.
|
|
$pro_placements['buddypress'] = [
|
|
'title' => __( 'BuddyBoss Content', 'advanced-ads' ),
|
|
'description' => __( 'Display ads on BuddyBoss related pages.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/buddyboss-icon.png',
|
|
];
|
|
} elseif ( class_exists( 'BuddyPress', false ) ) { // BuddyPress.
|
|
$pro_placements['buddypress'] = [
|
|
'title' => __( 'BuddyPress Content', 'advanced-ads' ),
|
|
'description' => __( 'Display ads on BuddyPress related pages.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/buddypress-icon.png',
|
|
];
|
|
}
|
|
// bbPress.
|
|
if ( class_exists( 'bbPress', false ) ) {
|
|
$pro_placements['bbpress'] = [
|
|
'title' => __( 'bbPress Content', 'advanced-ads' ),
|
|
'description' => __( 'Display ads in content created with bbPress.', 'advanced-ads' ),
|
|
'image' => ADVADS_BASE_URL . 'admin/assets/img/placements/bbpress-reply.png',
|
|
];
|
|
}
|
|
|
|
?>
|
|
<?php
|
|
if ( is_array( $pro_placements ) ) :
|
|
foreach ( $pro_placements as $key => $placement ) :
|
|
?>
|
|
<div class="advads-form-type">
|
|
<label class="advads-button advads-pro-link">
|
|
<span class="advads-button-text">
|
|
<?php
|
|
if ( isset( $placement['image'] ) ) {
|
|
echo '<img src="' . esc_attr( $placement['image'] ) . '" alt="' . esc_attr( $placement['title'] ) . '"/>';
|
|
} else {
|
|
echo '<strong>' . esc_html( $placement['title'] ) . '</strong><br/><p class="description">' . esc_html( $placement['description'] ) . '</p>';
|
|
}
|
|
?>
|
|
</span>
|
|
</label>
|
|
<p class="advads-form-description">
|
|
<strong><?php echo esc_html( $placement['title'] ); ?></strong>
|
|
<br/><?php echo esc_html( $placement['description'] ); ?>
|
|
</p>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<div class="clear"></div>
|
|
<h4><?php Upgrades::upgrade_link( __( 'Get all placements with All Access', 'advanced-ads' ), 'https://wpadvancedads.com/add-ons/all-access/', 'upgrades-pro-placements' ); ?></h4>
|
|
<?php endif; ?>
|