Advertisement
GochiSiyan

feature sign

Oct 7th, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_filter( 'jnews_featured_image', function ( $image, $post_id ) {
  2. if ( jeg_metabox( 'jnews_paywall_metabox.enable_premium_post', false, $post_id ) && is_single() ) {
  3. $image = rtrim($image, '</div>') . '><div class="premium_sign">+</div></div>';
  4. }
  5. return $image;
  6. }, 999, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement