• Resolved king

    (@sparofire)


    Hi… I turn on Capitalize First Letter but I don’t want if I’m sharing posts on Facebook, Twitter my post Title will be Capitalize. I just want it on search engines

    • This topic was modified 1 year, 6 months ago by king.
Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @sparofire,

    Thank you for contacting Rank Math support.

    You will have to add the following filters to your site if you don’t want to capitalize the social titles:

    add_filter( "rank_math/opengraph/facebook/og_title", function( $content ) {
    return ucfirst(strtolower($content));
    });
    add_filter( "rank_math/opengraph/twitter/twitter_title", function( $content ) {
    return ucfirst(strtolower($content));
    });

    Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps. Let us know if you need any other assistance.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove capitalize on social media’ is closed to new replies.