检查 post 是否在 2014 年的条件语句
Conditional statement to check if post is in 2014
如何检查 post 是否在特定年份?如果单个 post 在特定年份,我需要输出一些代码。
在 wp 循环内部,您可以使用 the_date('Y')[=16= 的内置 wp 函数获取 post 的日期]
所以在 wp 循环中检查日期是否 == 类似这样。
<?php
if ( have_posts() ) {
while ( have_posts() ) {
if(the_date('Y') == '2015'):
the_post();
else:
continue;
endif;
} // end while
} // end if
?>
如何检查 post 是否在特定年份?如果单个 post 在特定年份,我需要输出一些代码。
在 wp 循环内部,您可以使用 the_date('Y')[=16= 的内置 wp 函数获取 post 的日期]
所以在 wp 循环中检查日期是否 == 类似这样。
<?php
if ( have_posts() ) {
while ( have_posts() ) {
if(the_date('Y') == '2015'):
the_post();
else:
continue;
endif;
} // end while
} // end if
?>