Lynda
Forum Replies Created
-
Forum: Plugins
In reply to: [Table of Contents Plus] Better Numbered ListAnyone?
Forum: Plugins
In reply to: [Instant Articles for WP] instant articles for custom post typehow to filter post tags?
Forum: Plugins
In reply to: [Instant Articles for WP] Placing Ads in Recirculation Unitsadd this code to theme function.
// Instant Articles Recirculation Ads Filter
add_filter( ‘instant_articles_transformed_element’,’m_add_recirculation_ad’ );
function m_add_recirculation_ad ($instant_article) {
$instant_article->addMetaProperty(‘fb:op-recirculation-ads’, ‘placement_id=YOUR-PLACEMENT-ID’);
return $instant_article;
}replace YOUR-PLACEMENT-ID with your audience network placement id
how to filter post tags?
Forum: Plugins
In reply to: [Mark New Posts] Call in template without add_filterUpdate : and the marker just appear one time only. after i refresh the page, the marker was dissapear. ( not click / open post to read )
Forum: Plugins
In reply to: [Mark New Posts] Call in template without add_filterHi, im using this code for post list in my website homepage and mark new post is showing. But after someone click open the post , mark new post is not showing again in other device.
<?php if (mnp_is_new_post()) { ?>
<img src=”custom-picture.png”/>
<?php } ?>