Skip to content

Snippet: Disable More Tag For Blog Entries

By default if the theme see's that your post is using the more tag it will use that for the blog entry excerpts. If you want to ignore the more tag and use the theme's custom excerpt function you can disable the more check by returning false for the "wpex_check_more_tag" filter.

add_filter( 'wpex_check_more_tag', '__return_false' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top