ads
3 months ago
groups
1 day ago
metaboxes
1 year ago
placements
1 day ago
screens
1 day ago
settings
1 day ago
support
1 day ago
tables
1 week ago
tools
1 week ago
upgrades
1 year ago
widgets
1 week ago
bulk-edit.php
3 months ago
feedback-disable.php
1 year ago
header-tabs.php
3 months ago
header.php
3 months ago
index.php
2 years ago
manual-link.php
1 year ago
page-bulk-edit.php
1 year ago
page-quick-edit.php
1 year ago
quick-edit.php
2 months ago
screen-options.php
3 months ago
table-views-list.php
3 months ago
welcome-box.php
1 year ago
manual-link.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render Manual Link |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @since 2.0.0 |
| 7 | * |
| 8 | * @param string $title link text. |
| 9 | * @param string $url target URL. |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <a class="advads-link advads-manual-link" href="<?php echo esc_url( $url ); ?>" target="_blank"> |
| 15 | <?php echo esc_html( $title ); ?> |
| 16 | </a> |
| 17 |