Insert ads below the title

You can use mh_post_header action hook to add your ads content after the post title. Check the following code snippet for help add_action( ‘mh_post_header’, function() { echo ‘Ads content goes here’; }, 5 );

Highlight Ads for few seconds

Well if you want to increase size you need two images of that add and if your getting some ads from sites that give you revenue then it would be quite hard as you cant call the same ad twice from them to get a bigger image. Please do not take this next statement as … Read more

Insert Ads “into” comments section in Genesis Themework

I would use the Genesis Simple Hooks plugin which allows you to add code to Genesis Comment Form hook. I’m using Hostgator ads for this example, but adsense can be used too. I dropped this code <a href=”http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=brilliantpamela-” style=”float:right; margin: 4px 3px;”><img src=”http://tracking.hostgator.com/img/Discount_Shared/Hostgator-new-_AN-125×125.gif” border=”0″></a> into The simple hook action only allows you to place code … Read more

How to hide Ads in between posts on AMP? [closed]

You should be able to do something like this in your filter function: function prefix_insert_post_ads( $content ) { if ( is_admin() ) { return $content; } if ( ! is_single() ) { return $content; } if ( ! is_amp_endpoint() ) { $ad_code = My Ad code; return prefix_insert_after_paragraph( $ad_code, 4, $content ); } // We … Read more

Guidelines / restrictions about advertising /donate begging unside wordpress plugins or themes

http://wordpress.org/extend/plugins/about/guidelines/ You are probably thinking about #5 and #10 on that page. There are other possibly relevant ones as well, like #7 about phoning home. Basically, you cannot broadcast your plugin on the front side of the website without the ability to turn it off (user consent). Nor can your plugin be “trialware”. Its OK … Read more