-
I have another plugin that delivers its results to certain pages (page id: 7952 and page id: 5072). I have added the following code to my functions.php to block Rank Math from overwriting my titles so I can use their default SEO title options.
// BLOCKS RANK MATH FROM CHANGING THE URL TITLES FOR PROPERTIES add_action( 'wp_head', 'rankmath_disable_features',1); function rankmath_disable_features() { $page_id = array('5072','7952'); if( is_page( $page_id) ) { remove_all_actions( 'rank_math/head'); } }
The problem is that my titles are definitely blocked from those page id’s BUT they are completely blank. If I turn off your plugin, my titles re-appear just fine.
What am I doing wrong with my code?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The ticket ‘Stop Rank Math Titles on Select Pages – ERROR’ is closed to new replies.