Advertisement
GochiSiyan

disable inline related for video

Mar 17th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter('jnews_force_disable_inline_related_post',function ($value){
  2. $post_format = get_post_format( get_the_ID() );
  3. if ( 'video' === $post_format ) {
  4. return true;
  5. }
  6.  
  7. return $value;
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement