Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Filter to disable multiple SEO Contest tests
- */
- add_filter('rank_math/researches/tests', function ($tests, $type) {
- unset(
- $tests['titleHasNumber'],
- $tests['contentHasTOC'],
- $tests['titleSentiment'],
- $tests['titleHasPowerWords'],
- $tests['contentHasShortParagraphs'],
- $tests['contentHasAssets'],
- $tests['keywordInTitle'],
- $tests['keywordInMetaDescription'],
- $tests['keywordInPermalink'],
- $tests['keywordIn10Percent'],
- $tests['keywordInContent'],
- $tests['keywordInSubheadings'],
- $tests['keywordInImageAlt'],
- $tests['keywordDensity'],
- $tests['keywordNotUsed'],
- $tests['lengthContent'],
- $tests['lengthPermalink'],
- $tests['linksHasInternal'],
- $tests['linksHasExternals'],
- $tests['linksNotAllExternals'],
- $tests['titleStartWithKeyword'],
- $tests['hasContentAI']
- );
- return $tests;
- }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment