• 04-02-2023, 02:34:51
    #1
    Değerli arkadaşlar siteme rank math seo pro'yu kurdum fakat odak kelime eklenmesi gerekmekte. Fakat 17.000 makale var bunu otomatik yapmanın herhangi bir yolu var mıdır ?
    Saygılarımla
  • 04-02-2023, 03:51:35
    #2
    Kurumsal PLUS
    Temanızın functions.php dosyasına veya code snippet eklentisi indirin snippet kısmından rastgele bir isim snippet oluşturun kod kısmına aşağıdakini yazın.
    Odak anahtar kelime olmayan yazılarak yazı başlığını odak anahtar kelime yapar.
    /**
     * 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' );