我做了一个定制的“案例研究”帖子,里面有很多帖子。
我希望获得每个帖子的ID来操作数据,但尽管查看了类似的线程,但我无法拼凑出一种方法来实现这一点。类似于;
foreach post oftype custom, get the id
我正在制作一个函数来在后端显示这些信息,下面是代码片段。
function display_meta_box( $case_study )
{
if (in_array(\'case_studies\', get_post_types()))
{
...get the IDs of all posts of type \'case_studies\'...
}
...do other stuff with IDs...
}