| 1 | <?php |
| 2 | /** |
| 3 | * Option to enable AdSense Auto ads on AMP pages |
| 4 | * located under Advanced Ads > Settings > AdSense > Auto ads |
| 5 | * |
| 6 | * @var string $option_name name of the option. |
| 7 | * @var bool $auto_ads_enabled true if the AMP Auto ads option is enabled. |
| 8 | */ |
| 9 | ?> |
| 10 | <p> |
| 11 | <label> |
| 12 | <input type="checkbox" name="<?php echo esc_attr( $option_name ); ?>[auto_ads_enabled]" value="1" <?php checked( $auto_ads_enabled ); ?>/> |
| 13 | <?php esc_html_e( 'Enable AMP Auto ads', 'advanced-ads' ); ?> |
| 14 | </label> |
| 15 | </p> |
| 16 |