activate-license.php
3 months ago
cached-websites.php
3 months ago
getting-started.php
3 months ago
manage-ads-across-multiple-installations.php
3 months ago
prevent-click-fraud.php
3 months ago
share-statistics.php
3 months ago
subscription-not-working.php
3 months ago
video-ads.php
3 months ago
getting-started.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Getting started FAQ. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <p> |
| 11 | <?php |
| 12 | echo wp_kses_post( |
| 13 | __( '<strong>Using placements for delivery is best practice</strong>, whether you are inserting a single ad or an ad group. Even if you prefer working with shortcodes, you can use a <strong>Manual Placement</strong>, which also provides a shortcode. This gives you the flexibility of shortcode insertion while still keeping centralized control.', 'advanced-ads' ) |
| 14 | ); |
| 15 | ?> |
| 16 | </p> |
| 17 | |
| 18 | <p> |
| 19 | <?php |
| 20 | echo wp_kses_post( |
| 21 | __( '<strong>Here’s why that matters:</strong> If you manually insert an ad shortcode into 100 individual posts and later stop working with that advertiser, you would need to edit all 100 posts to remove or replace the shortcode (unless it’s embedded in a template). With placements, you simply replace or disable the ad (or ad group) assigned to that placement, and the change is applied everywhere instantly. This significantly reduces maintenance effort and makes your setup more scalable and future-proof.', 'advanced-ads' ) |
| 22 | ); |
| 23 | ?> |
| 24 | </p> |
| 25 |