Advertisement
arie_cristianD

auto hide video content on premium posts

Feb 9th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. add_filter( 'jeg_metabox', 'auto_hide_video_premium', 99, 2 );
  2.  
  3.  
  4. function auto_hide_video_premium( $temp, $name ) {
  5.     if ( 'jnews_paywall_metabox.enable_preview_video' === $name ) {
  6.         return true;
  7.     }
  8.  
  9.     if ( 'jnews_paywall_metabox.video_preview_url' === $name && empty( $temp ) ) {
  10.         return 'https://www.youtube.com/watch?v=fF45RqoDRKQ'; /* default preview video on premium video post */
  11.     }
  12.  
  13.     return $temp;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement