制作模板,但如何使日期只显示在帖子中,而不是其他地方?
<div class="date"><strong><?php the_date(); ?></strong></div>
这使得日期显示在主页上,但我只需要张贴。类似于if is post then the\\u date()?制作模板,但如何使日期只显示在帖子中,而不是其他地方?
<div class="date"><strong><?php the_date(); ?></strong></div>
这使得日期显示在主页上,但我只需要张贴。类似于if is post then the\\u date()?有两种选择:
创建单独的single.php
只显示发布日期
if ( is_single() )
{
?><div class="date"><strong><?php the_date(); ?></strong></div><?php
}
我设置了一个查询来比较一些自定义字段的开始日期和结束日期。岗位需要填写开始日期;但是,结束日期不是。这会导致以下问题:query_posts( array ( \'meta_query\' => array( array( \'key\' => \'start_date\', \'valu