Rank Math SEO is a popular SEO plugin in WordPress that helps optimize your website for search engines, track your website's SEO performance.
Tuy nhiên, không phải lúc nào bạn cũng cần chấm điểm chuẩn xác. Đặc biệt là các mục “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.









Comment