$args = array(
'post_type' => 'namaste_course',
'post_status' => 'publish',
'posts_per_page' => -1,
);
$post_id = new WP_Query( $args );
$field_key = "CEUAP";
$value = true;
update_field( $field_key, $value, $post_id );
我正尝试在所有博客帖子的此特定字段中打勾。谁能看到我想念的东西?
编辑:因此,我没有使用所有帖子ID,而是尝试使用一个post_ID(以查看我要去哪里),并且下面的代码未选中该帖子的所有复选框。
$post_id = "65137";
$field_key = "field_59654068371a3";
$value = true;
update_field( $field_key, $value, $post_id );