我在主页上创建了两个名为post_date和event_status的自定义字段。我添加了新帖子,并通过新添加的" post_date"添加了帖子日期。自定义字段。现在我必须获得我添加了自定义字段" post_date"的所有帖子,这在wordpress中如何实现?
答案 0 :(得分:0)
以下是查询请使用此
<?php $posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'post',
'meta_key' => 'post_date'
));?>