MOBILE THEME – Set number of paragraph after which display inline ad

Posted in: Newspaper
Post count: 72

Hello,
I’m using the mobile theme provided with Newspaper theme. How can I specify the # of paragraphs after which display the inline ad?
What if I want to display multiple inline ads?

Post count: 72

Hello again,
I know I can achieve that with the following script but I want the ads to auto-align around the text as in desktop mode especially for when the mobile is in landscape mode.

add_filter( 'the_content', 'prefix_insert_post_ads' );

function prefix_insert_post_ads( $content ) {
$ad_code = '#adcode#';
if ( is_single() ) {
return prefix_insert_after_paragraph( $ad_code, 5, $content );//ad will be inserted after 5th paragraph
}
return $content;
}

Post count: 260

Or its more easily if you use quick adsense plugin 🙂

Post count: 72

Hello,
it’s always better to avoid plugins when you can achieve the same result with few lines of code 😉 Plus, the official AdSense plugin has a bad reputation (2.8 stars out of 5).

Post count: 22421

Hello,

You can specify the paragraph after which you want the inline ad to display in: http://screencast.com/t/WjAAiRjOIF
There is no simple way of creating multiple inline ads. Sorry.
If you want to crate more instances of the ads, then you will have to make it custom as the re is no simple way I can provide via the theme support. Sorry.

Thanks.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.