-
Hi,
I’m trying to disable Rank Math for a custom post type, when I use your provided hook it does indeed disable Rank Math but then I get no meta title at all output for that post type, it’s like it’s disabling the title tag altogether.
It does the same for any page if I change the code to:
add_action( ‘wp_head’, ‘rankmath_disable_features’,1);
function rankmath_disable_features() {
if(is_singular(‘page’)) {
remove_all_actions( ‘rank_math/head’);
}
}SO I believe your code is disabling the titles for the whole of WordPress.
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
The ticket ‘custom post type’ is closed to new replies.
