
Snow White
Latest videos

/** * Function to automatically update the focus keyword with the post categories */ 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){ if(get_the_category($p->ID)){ foreach((get_the_category($p->ID)) as $category) { $keywords[] = strtolower($category->name); } update_post_meta($p->ID,'rank_math_focus_keyword',implode(", ", array_unique($keywords))); } } } add_action( 'init', 'update_focus_keywords' );