condition-author.php
1 year ago
condition-device.php
1 year ago
condition-is-or-not.php
1 year ago
condition-number.php
3 years ago
condition-operator.php
1 year ago
condition-string.php
2 years ago
conditions-form.php
5 months ago
display-conditions-list.php
1 year ago
no-option.php
1 year ago
not-selected.php
4 years ago
visitor-conditions-list.php
1 year ago
no-option.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View to show a notice when no terms are available for a taxonomy. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | * |
| 9 | * @var WP_Taxonomy $taxonomy |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <p class="advads-conditions-not-selected advads-notice-inline advads-idea"> |
| 14 | <?php |
| 15 | printf( |
| 16 | /* translators: %s is a name of a taxonomy. */ |
| 17 | esc_html_x( 'No %s found on your site.', 'Error message shown when no terms exists for display condition; placeholder is taxonomy label.', 'advanced-ads' ), |
| 18 | esc_html( $taxonomy->label ) |
| 19 | ); |
| 20 | ?> |
| 21 | </p> |
| 22 |