Automating Focus Keyword In WP

#277548
  • Resolved Nabom Tuazor Clark
    Rank Math free

    So I finally got the code snippet to add to my rank math.php file.

    /**
    * Function to automatically update the focus keyword with the post title, if no focus keyword is set
    */
    function update_focus_keywords() {
    $posts = get_posts(array(
    'posts_per_page' => -1,
    'post_type' => 'post' // Replace post with the name of your post type
    ));
    foreach($posts as $p){
    // Checks if Rank Math keyword already exists and only updates if it doesn't have it
    $rank_math_keyword = get_post_meta( $p->ID, 'rank_math_focus_keyword', true );
    if ( ! $rank_math_keyword ){
    update_post_meta($p->ID,'rank_math_focus_keyword',strtolower(get_the_title($p->ID)));
    }
    }
    }
    add_action( 'init', 'update_focus_keywords' );

    Now, where do I place it? beginning, middle or end?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Azib Yaqoob
    Rank Math business

    Hello,

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

    You can add this code anywhere within the Rank-math.php file. However, if you have used other filters/hooks in this file then make sure to not break the code.

    Hope that answers your question. Looking forward to helping you. Thank you.

    ​​​​​​​

    Thanks Azib, I put it at the end of the code and it worked!

    Azib Yaqoob
    Rank Math business

    Hello,

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    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 3 replies - 1 through 3 (of 3 total)

The ticket ‘Automating Focus Keyword In WP’ is closed to new replies.