我已经基于category创建了一个自定义循环,现在我想运行一个函数,将当前帖子的特定ID作为参数进行迭代。我有。。
$secondary_loop = new WP_Query(array( \'category_name\' => get_the_title(), \'posts_per_page\' => 5 ));
while ( $secondary_loop->have_posts() ) : $secondary_loop->the_post();
$post_ids = wp_list_pluck( $secondary_loop->posts, \'ID\' );
$current_id = array_pop($post_ids);
rating($current_id);
the_title();
the_content();
endwhile;
wp_reset_postdata();
但是,对于上面的代码,只有
$post_ids
已使用。如何将当前ID传递给
rating()
?