Remove Custom Post Type Next & Previous Post Links
You can use the following snippet to disable the "Next" and "Previous" post links for a specific custom post type. Just replace POST_TYPE with the name of your desired post type.
For greater flexibility and easier customization of custom post types, we recommend using our Post Types Unlimited plugin. It provides a user-friendly interface to manage and tailor custom post types to your needs.
add_filter( 'wpex_has_next_prev', function( $bool ) {
if ( is_singular( 'POST_TYPE' ) ) {
$bool = false;
}
return $bool;
}, 50 );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)
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Related Snippets