Thanks for the quick reply Saumya – my website is https://downloadfreepsd.com
here is the code in my function.php which i am using for generating [linkad] shortcode
add_shortcode( ‘linkad’, function() {
if( aicp_can_see_ads() ) {
$adCode = ‘<div class=“aicp”><script async src=”//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<!– linkad –>
<ins class=”adsbygoogle”
style=”display:block”
data-ad-client=”ca-pub-xxxxxx”
data-ad-slot=”xxxxx”
data-ad-format=”link”>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>’;
return $adCode;
} else {
return “No ads to show”;
}
} );