Guest User

Untitled

a guest
Jan 23rd, 2020
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /**
  2.  * Rank Math snippet to disable 'contentHasTOC' tests.
  3.  *
  4.  * @param array  $tests Array of tests with score
  5.  * @param string $type  Object type. Can be post, user or term.
  6.  */
  7. add_filter( 'rank_math/researches/tests', function( $tests, $type ) {
  8.     unset($tests['content-readability']['contentHasTOC']);
  9.  
  10.     $tests['basic']['keywordInMetaDescription']['score'] = 4;
  11.  
  12.     return $tests;
  13. }, 10, 2 );
Add Comment
Please, Sign In to add comment