如何通过id获得自定义帖子?仅供参考:我正在通过一个表单传递一个特定的post id,它正在执行一个ajax调用。
我只想检索一篇文章并获取标题:
<?php
// E.g. $loc = 700
$args = array(\'post_id\'=>$loc, \'post_type\'=>\'seminars\', \'limit\'=> \'1\');
$loop = new WP_Query($args);
// Start loop for seminar posts
$loop->the_post();
echo the_title();
// returns just one post and it\'s not the right custom post