focus kw of mine gym site

#153642
  • Resolved Jopise
    Rank Math free

    Hello support,
    I have a wensite. My website is a affiliate web site. This site i use a plugin for autoblogging which plugin name wordpress automatic. This plugin do automatic generate post or product from buyer website and automaticly publish it in my website. Is it possibble to setup focus keyword automaticly generate from title or category or tag? If yes, how?

    REPLY

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math.

    You can use the following snippet to set up the post title as a focus keyword automatically.

    Please place the following code to your themes > functions.php

    function rm_update_focus_keywords($post_id, $post, $update) {
        if ($post->post_type == 'post'AND $post->post_status == 'publish') {
            update_post_meta( $post_id, 'rank_math_focus_keyword', strtolower(get_the_title($post_id)) );
    		//update_post_meta( $post_id, 'rank_math_focus_keyword', strtolower($Catname) );
        }
    }
    add_action( 'wp_insert_post', 'rm_update_focus_keywords', 10, 3 );

    Hope that helps, and please do not hesitate to let us know if you need our assistance further.

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

The ticket ‘focus kw of mine gym site’ is closed to new replies.