ad-group.php
3 months ago
conditions.php
3 months ago
header-note.php
3 months ago
item-select.php
3 months ago
name.php
3 months ago
type.php
3 months ago
usage.php
3 months ago
header-note.php
29 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Show a note about placing ads in the header. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | */ |
| 9 | |
| 10 | ?> |
| 11 | <div style="margin-top: 12px;"> |
| 12 | <?php |
| 13 | printf( |
| 14 | wp_kses( |
| 15 | /* translators: %s is a URL. */ |
| 16 | __( 'Tutorial: <a href="%s" target="_blank">How to place visible ads in the header of your website</a>.', 'advanced-ads' ), |
| 17 | [ |
| 18 | 'a' => [ |
| 19 | 'href' => [], |
| 20 | 'target' => [], |
| 21 | ], |
| 22 | ] |
| 23 | ), |
| 24 | 'https://wpadvancedads.com/place-ads-in-website-header/?utm_source=advanced-ads&utm_medium=link&utm_campaign=header-ad-tutorial' |
| 25 | ); |
| 26 | ?> |
| 27 | </div> |
| 28 | <?php |
| 29 |