Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'jnews_single_post_begin', 'reoder_ads' );
- function reoder_ads() {
- // using Top Content Advertisement
- remove_action( 'jnews_single_post_before_content', array( JNews\Ads::getInstance(), 'article_content_top' ), 10 );
- // use this code for below the “Related Posts”
- add_action( 'jnews_single_post_after_content', array( JNews\Ads::getInstance(), 'article_content_top' ), 45 );
- // use this code for above the “Related Posts”
- add_action( 'jnews_single_post_after_content', array( JNews\Ads::getInstance(), 'article_content_top' ), 35 );
- // Using Bottom Content Advertisement
- remove_action( 'jnews_single_post_after_content', array( JNews\Ads::getInstance(), 'article_content_bottom' ), 10 );
- // use this code for below the “Related Posts”
- add_action( 'jnews_single_post_after_content', array( JNews\Ads::getInstance(), 'article_content_bottom' ), 45 );
- // use this code for above the “Related Posts”
- add_action( 'jnews_single_post_after_content', array( JNews\Ads::getInstance(), 'article_content_bottom' ), 35 );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement