Open shaunw opened 2 years ago
Is there an option to disable for all/some custom post types?
🤦♂️
function page_links_to_plugin_post_types( $post_types ) { $post_types = [ 'post', 'events' ]; return $post_types; } add_filter( 'page-links-to-post-types', 'page_links_to_plugin_post_types' );
Is there an option to disable for all/some custom post types?