|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/www/wp-content/plugins/better-adsmanager/templates/ |
<?php
$attrs = array(
'type' => 'adsense',
);
$_attrs = array(
'ad-client',
'ad-slot',
//'ad-format', ad format not needed for AMP
'full-width-responsive', // full width ad in mobile devices
'ad-layout',
// 'ad-layout-key', this type of ads does not supported in amp currently!
// https://github.com/ampproject/amphtml/issues/10957
'matched-content-ui-type',
'matched-content-rows-num',
'matched-content-columns-num',
);
$caption = ! empty( $banner_data['caption'] ) && $args['show-caption'] ? Better_Ads_Manager::get_option( 'caption_position' ) : false;
$ad_attrs = '';
foreach ( $_attrs as $_attr ) {
if ( empty( $banner_data[ $_attr ] ) ) {
continue;
}
$attrs[ 'data-' . $_attr ] = $banner_data[ $_attr ];
}
if ( ! empty( $banner_data['size']['width'] ) && ! empty( $banner_data['size']['height'] ) ) {
$attrs['width'] = $banner_data['size']['width'];
$attrs['height'] = $banner_data['size']['height'];
} elseif ( empty( $banner_data['size']['width'] ) && ! empty( $banner_data['size']['height'] ) ) {
$attrs['height'] = $banner_data['size']['height'];
$attrs['layout'] = 'fixed-height';
} else {
$attrs['width'] = '300';
$attrs['height'] = '250';
}
if ( bf_is_amp() == 'better' ) {
better_amp_enqueue_ad( 'adsense' );
}
//
// Change the full-width-responsive to layout=responsive for AMP
//
if ( isset( $attrs['data-full-width-responsive'] ) ) {
unset( $attrs['data-full-width-responsive'] );
$attrs['layout'] = 'responsive';
}
ob_start();
if ( $caption == 'above' ) {
echo "<p class='bsac-caption bsac-caption-above'>{$banner_data['caption']}</p>";
}
?>
<amp-ad <?php
foreach ( $attrs as $k => $v ) {
echo $k, '=', $v, ' ';
}
?>></amp-ad><?php
if ( $caption === 'below' ) {
echo "<p class='bsac-caption bsac-caption-below'>{$banner_data['caption']}</p>";
}
return ob_get_clean();