<meta name="twitter:url

#835986
Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    To add the “ tag using Rank Math, you can follow these steps:

    1. Navigate to your WordPress admin panel and go to Rank Math SEO → Titles & Meta → Social Meta.
    2. In the Social Meta settings, you will find an option to add the Twitter URL. Enter the desired URL in the field provided.
    3. Save the changes.

    By following these steps, you can easily add the Twitter URL meta tag using Rank Math without the need to manually edit the code.

    If you need further assistance or have any other questions, feel free to ask.

    Have a great day!

    Sources:
    Open Graph Meta Tags » Rank Math

    Hello,

    To add that meta tag on your site, you can use and customize this filter:

    add_action( 'rank_math/head', function() {
    	echo '<meta name="twitter:url" content="https://website.com"/>'."\n";
    }, 99 );

    Here’s how you can add filter/hook to your WordPress site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Please note the code above applies to your whole site so you can add conditional statement to apply it to some of your pages only.

    Hope that helps.

    any automatic code??

    Hello,

    Could you please confirm if you’re referring to the URL part being automatic?

    If so, you can update the filter with this:

    add_action( 'rank_math/head', function() {
    	$url = home_url();
    	echo '<meta name="twitter:url" content="'.$url.'"/>'."\n";
    }, 99 );

    Looking forward to helping you.

    The URL of the home page is also coming in the post, please solve this problem

    Hello,

    Please replace the previous code with the following one:

    add_action( 'rank_math/head', function() {
    	$url = home_url($_SERVER['REQUEST_URI']);
    	echo '<meta name="twitter:url" content="'.$url.'"/>'."\n";
    }, 99 );

    Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.

    thank you

    You are like a superhero, you reach wherever there is a problem 😂

    Hello,

    We are super happy that this resolved your issue.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)

The ticket ‘<meta name="twitter:url’ is closed to new replies.