- 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>
22 lines
451 B
PHP
Executable File
22 lines
451 B
PHP
Executable File
<?php
|
|
/**
|
|
* This class represents the "Post Custom Position" placement
|
|
*
|
|
* @package AdvancedAds\Pro
|
|
* @author Advanced Ads <info@wpadvancedads.com>
|
|
* @since 2.26.0
|
|
*/
|
|
|
|
namespace AdvancedAds\Pro\Placements;
|
|
|
|
use AdvancedAds\Abstracts\Placement;
|
|
use AdvancedAds\Interfaces\Placement_Interface;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Post Custom Position.
|
|
*/
|
|
class Placement_Custom_Position extends Placement implements Placement_Interface {
|
|
}
|