• 07-02-2022, 11:32:48
    #1
    Merhabalar rank math kurulumu yapıldı 761 gonderi var sitede bunlara otomatik ekleme gibi bir şansım varmı acaba yoksa tek tekmi girilecek
  • 07-02-2022, 15:19:04
    #2
    Geçmiş konuları düzenlemenize gerek yok.
  • 07-02-2022, 19:57:23
    #3
    Eğer eskıden bı eklentı varsa seo eklentısı onu ıcerı aktarabılırsınız ama yoksa sıfırdan doldurmanız lazım.
  • 07-02-2022, 19:58:04
    #4
    Boş bıraksanız da hiçbir sorun olmaz.
  • 08-02-2022, 00:07:26
    #5
    Kurumsal PLUS
    functions.php veya rank-math.php içine şu kodu ekleyin. Odak anahtar kelime olmayanları mevcut makalenin başlığını odak anahtar kelime yapar.
    /**
    * Function to automatically update the focus keyword with the post title
    */
    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) {
    update_post_meta($p->ID, 'rank_math_focus_keyword', strtolower(get_the_title($p->ID)));
    }
    }
    add_action('init', 'update_focus_keywords');