Hello,
We apologize for the issue you are facing regarding the meta fields in your database. Unfortunately, the context provided does not include specific instructions on how to disable these particular Rank Math meta fields directly from the database.
However, if you wish to disable all Rank Math generated SEO tags, you can follow the steps outlined in our knowledgebase article on How to Disable All Rank Math Generated SEO Tags. This involves adding a code snippet to your theme’s rank-math.php
file, which can help in managing the SEO tags generated by Rank Math.
If you have further questions or need assistance with specific meta fields, please reply to this ticket, and a human agent from the Rank Math Support team will take over and provide you with the necessary guidance.
Thank you for raising this concern!
This is an automated reply from Rank Math Support Bot. Your ticket has been assigned to a human agent and we will get back to you shortly.
Hi,
I still want to use some SEO functions like meta title, tag etc. But I would like to remove the meta fields mentioned, and also all the content tests (I know there is an article on how to remove specific content tests, but I would like to disable the whole thing).
Thank you.
Hello,
You can use and customize this filter to disable all the Content Analysis tests on your site:
/**
* Allow developers to modify the test or score.
*
* @param array $tests Array of tests with score
* @param string $type Object type. Can be post, user or term.
*/
add_filter( 'rank_math/researches/tests', function( $tests, $type ) {
return [];
}, 10, 2 );
If you’re not sure how to add this code, you can follow this guide:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
Looking forward to helping you.
Thanks, but this does not answer the question regarding all the meta fields in the database.