Advertisement
cyberdev

Untitled

Aug 16th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_filter( 'the_content', 'bimber_custom_find_yt', 10, 1 );
  2.  
  3. function bimber_custom_find_yt( $content ) {
  4. $findclip = 'youtube.com';
  5. $find = stripos($content, $findclip);
  6. if ( is_single() ){
  7.  
  8. if ( $find !== false ){
  9. echo '<style>#content .entry-featured-media{display:none !important;}</style>';
  10. }
  11. };
  12. return $content;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement