HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/advanced-ads-tracking/views/admin/settings/setting-sponsored.php
<?php
/**
 * Template for rel="sponsored" setting.
 *
 * @since   2.6.0
 * @package AdvancedAds\Tracking
 * @author  Advanced Ads <info@wpadvancedads.com>
 *
 * @var bool $sponsored Add sponsored to programatically created links.
 */

?>
<label>
	<input name="<?php echo esc_attr( $this->options_slug ); ?>[sponsored]" type="checkbox" <?php checked( $sponsored ); ?>/>
	<?php
	printf(
		/* translators: %s is <code>rel="sponsored"</code> */
		esc_html__( 'Add %s to programatically created links.', 'advanced-ads-tracking' ),
		'<code>rel="sponsored"</code>'
	);
	?>
	<p class="description">
		<a href="https://webmasters.googleblog.com/2019/09/evolving-nofollow-new-ways-to-identify.html" target="_blank" class="advads-external-link"><?php esc_html_e( "Read Google's recommendation on Google Webmaster Central Blog.", 'advanced-ads-tracking' ); ?></a>
	</p>
</label>
<br/>