What is it?
Ad Overlay Anything is a WordPress plugin that can show your ads on top of anything, including embedded videos, images, or blocks of text. Increase your ad exposure and site revenue by placing relevant ads directly over your most important content!
How will it help your site?
Ads are not effective unless they are seen, right? If your website visitors aren’t seeing the advertisements you are placing then you are missing out on potential sales and income.
Ad Overlay Anything allows you to place ads directly where your visitors are going to be looking, thereby boosting your ad views and click through ratios.
It also allows you to tailor your advertisements and tie them to particular pieces of content. If a visitor to your website is viewing certain content, for example, then they are more likely to be interested in products or services relating to that content. Tailoring your advertisements this way allows you to drastically increase your conversion rates and truly make the most out of your advertising space.
Example one
[aoa id=14][/aoa]
Example two
[aoa id=9]<img src="http://www.domain.com/wp-content/uploads/2015/11/cottage-1-view-e1448553859458.jpg" alt="cottage-1-view" width="480" height="360" class="alignleft size-full wp-image-3659" />[/aoa]
Example three
[aoa id=’8’]
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
[/aoa]
You may also use PHP code instead of the shortcode. Example:
// always check if plugin is active first:
if ( ! is_plugin_active( 'ad-overlay-anything/ad-overlay-anything.php' ) ) return;
$aoa = new Ad_Overlay_Anything();
// what the ad will overlay:
$anything = '<iframe width="560" height="315" src="https://www.youtube.com/embed/WGJmwPd5oNs" frameborder="0" allowfullscreen></iframe>';
// choose a random ad, wrap it around anything:
$wrap = $aoa->aoa_shortcode( array( 'id' => 0 ), $anything );
echo $wrap;