Advertisement
GochiSiyan

sign premium

Oct 6th, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter( 'the_title', function ( $title, $post_id ) {
  2. if ( jeg_metabox( 'jnews_paywall_metabox.enable_premium_post', false, $post_id ) && ( is_home() || is_front_page() || is_archive() ) ) {
  3. $title .= ' +';
  4. }
  5. return $title;
  6. }, 999, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement