我有自定義文章類型和自定義字段:expired_date
。
我想顯示該帖子沒有過期,所以基本上我想檢查一下,如果expired_date > current_date
,帖子會顯示。自定義文章的Wordpress自定義文章
如何執行此WordPress循環查詢?
<?php
$args = array(
'post_type' => 'job_listing'
);
query_posts($args);
?>
<?php while (have_posts()) : the_post(); ?>
你可以請幫助我如何檢查自定義帖子查詢。
更正拼寫WordPress的! –