advanced-js.php
1 year ago
allow-unfiltered-html.php
1 year ago
block-bots.php
1 year ago
content-injection-everywhere.php
1 year ago
content-injection-level-limitation.php
1 year ago
content-injection-priority.php
1 year ago
custom-label.php
1 year ago
disable-ads.php
1 year ago
disable-notices.php
1 year ago
disable-post-types.php
1 year ago
editors-manage-ads.php
1 year ago
frontend-prefix.php
1 year ago
hide-for-ip-address.php
1 year ago
hide-for-user-role.php
1 year ago
link-target.php
1 year ago
uninstall-delete-data.php
1 year ago
frontend-prefix.php
15 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render frontend prefix settings |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | */ |
| 9 | |
| 10 | ?> |
| 11 | <input id="advanced-ads-front-prefix" type="text" value="<?php echo esc_attr( $prefix ); ?>" name="<?php echo esc_attr( ADVADS_SLUG ); ?>[front-prefix]" /> |
| 12 | <?php // deprecated. ?> |
| 13 | <input type="hidden" value="<?php echo esc_attr( $old_prefix ); ?>" name="<?php echo esc_attr( ADVADS_SLUG ); ?>[id-prefix]" /> |
| 14 | <p class="description"><?php esc_html_e( 'Prefix of class and id attributes for elements created in the frontend.', 'advanced-ads' ); ?></p> |
| 15 |