How to turn off scoring filter in Rank Math Seo

ARTRU
How to turn off scoring filter in Rank Math Seo

Rank Math SEO is a popular SEO plugin in WordPress that helps optimize your website for search engines, track your website's SEO performance.

However, you don't always need to score accurately. Especially the sections "Content AI", "Table of Contents",...

Rank Math SEO itself also helps you turn off these unnecessary filters to simplify the process of building article content.

How to Disable Rank Math SEO Content Tests

Below are the filters I often use. You just need to put the code in the file function.php or use form plugin Code Snippets

/** Filter RANKMATH */
add_filter('rank_math/researches/tests', function ($tests, $type) {
	/** Table of Contents */
	unset($tests['contentHasTOC']);
	/** Number in Title */
	unset($tests['titleHasNumber']);
	/** Internal Links */
	unset($tests['linksHasInternal']);
	/** Content AI */
	unset($tests['hasContentAI']);
	/** Length of the Content */
	unset($tests['lengthContent']);
	/** Title Sentiment test */
	unset($tests['titleSentiment']);
	return $tests;
}, 10, 2);

After using the scoring filter in Rank Math Seo. Your articles easily score 100/100.

After turning off the scoring filter in Rank Math Seo
After turning off the scoring filter in Rank Math Seo
COMMENT

Related Articles