Default keywords?

#726012
  • Resolved Frank Laughlin
    Rank Math pro
    Content AI Starter

    The same keywords will apply to every page/post on my site. Is there a place to enter those terms once so they are automatically in the SEO setting?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello, I apologize for the inconvenience you’re facing. To add default keywords that will apply to every page/post on your site, you can use Rank Math’s SEO plugin. You can add these default keywords in the “General” tab of the Rank Math SEO plugin meta box. Here’s a screenshot of where you can find this option:

    Default Keywords in Rank Math

    You can find more information about this in our knowledgebase article on the General Tab in the Meta Box of Rank Math SEO Plugin here.

    If you have any further questions or need assistance with this, feel free to reach out to our dedicated support team by clicking here. We’re available 24/7, 365 days a year to help you out.

    Sources:
    How to Add Keywords to WordPress » Rank Math
    Analyzing Your Site’s SEO with Rank Math’s SEO Analysis Tool
    Rank Math’s Content Analysis Tests For Archive Pages » Rank Math
    General Tab in Meta Box of Rank Math SEO Plugin

    Hello,

    Thank you for contacting us and sorry for any inconvenience that might have been caused due to that.

    Although it is not recommended to use the same keyword for all of your posts/pages, if still want to include this, you can use the following filter on your website:

    function update_focus_keywords()
    {
        $post_types = array('post', 'page');
        $posts = get_posts(array(
        'posts_per_page' => -1,
        'post_type'      => $post_types,
    ));
        foreach ($posts as $p) {
            update_post_meta($p->ID, 'rank_math_focus_keyword', 'your_focus_keyword_here');
        }
    }
    add_action('init', 'update_focus_keywords');
    

    Please make sure to change the your_focus_keyword_here with your actual focus keyword.

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

    Let us know how it goes. Looking forward to helping you.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

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

The ticket ‘Default keywords?’ is closed to new replies.