Guest User

Untitled

a guest
Oct 9th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter( 'the_content', 'filter_the_content_in_the_main_loop',100 );
  2.  
  3. function filter_the_content_in_the_main_loop( $content ) {
  4.  
  5. // Check if we're inside the main loop in a single post page.
  6. $content = str_replace("&","&",$content);
  7.  
  8.  
  9. return $content;
  10. }
Add Comment
Please, Sign In to add comment