Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function dotspice_remove_p_tags($content)
- {
- if (is_singular('page')) {
- remove_filter('the_content', 'wpautop');
- remove_filter('the_excerpt', 'wpautop');
- }
- return $content;
- }
- add_filter('the_content', 'dotspice_remove_p_tags', 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement