/** * Function to automatically update the focus keyword with the post/page title, if no focus keyword is set */ function update_focus_keywords() { // 'post' ve 'page' post tipleri için döngü yap. İhtiyaca göre buraya daha fazla post tipi eklenebilir. $post_types = array('post', 'page'); foreach ($post_types as $post_type) { $posts = get_posts(array( 'posts_per_page' => -1, 'post_type' => $post_type // Yazı ve sayfa post tipleri )); foreach ($posts as $p) { // Rank Math anahtar kelime kontrolü, eğer yoksa güncelle $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))); } } } } // WordPress 'init' eylemiyle fonksiyonu tetikle add_action('init', 'update_focus_keywords'); biotekno etil alkol - Keyifler Yerinde

biotekno etil alkol