arie_cristianD

auto block posts with premium category

Aug 3rd, 2025
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'jeg_metabox', 'j_override_paywall_block', 99, 2 );
  2.  
  3. function j_override_paywall_block( $default, $name ) {
  4.     if ( 'jnews_paywall_metabox.enable_premium_post' === $name ) {
  5.         if ( has_category( 'premium-post' ) ) { /* change premium-post with your Premium Post category slug */
  6.             return true;
  7.         }
  8.     }
  9.     return $default;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment