details.php
3 months ago
list-row-loop-none.php
3 months ago
list-row-loop.php
4 weeks ago
name.php
3 months ago
type.php
3 months ago
usage.php
3 months ago
usage.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render the group usage column content in the group table. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | * |
| 9 | * @var Group $group Group instance. |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <div class="advads-usage"> |
| 14 | <strong><?php esc_html_e( 'shortcode', 'advanced-ads' ); ?></strong> |
| 15 | <code><input type="text" onclick="this.select();" value='[the_ad_group id="<?php echo esc_attr( $group->get_id() ); ?>"]' readonly /></code> |
| 16 | <br/><br/> |
| 17 | <strong><?php esc_html_e( 'template (PHP)', 'advanced-ads' ); ?></strong> |
| 18 | <code><input type="text" onclick="this.select();" value="the_ad_group(<?php echo esc_attr( $group->get_id() ); ?>);" readonly /></code> |
| 19 | </div> |
| 20 |