How to remove the restriction on the length of the description?
-
Hello! I can not remove the limit of 160 characters for the length of the meta-description in posts. Meta-description in posts is formed automatically using variables.
Used the code fragment in functions.php to remove the restriction:add_filter( 'rank_math/frontend/description', function( $description ) { return substr( $description, 0, 250 ); });
But it does not help increase the length of the meta-description.
If you try on the contrary to limit, for example, up to 100 characters, it works, but an increase over 160 characters does not work.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to remove the restriction on the length of the description?’ is closed to new replies.