Show post date on the page

时间:2015-02-23 作者:Steve Kim

在页面上显示发布日期的php代码是什么?

例如,它是一个woocommerce产品,下面是我迄今为止的php代码:

这有用吗?

   if ($hide_price !== \'0\') :
        $output .= \'<div class="mywoocmmerceprice>\';
        $output .= $product->get_categories();  
//here is where I want to add the date                          
        $output .= \'</div>\';
   endif;
谢谢你

1 个回复
最合适的回答,由SO网友:Rarst 整理而成

the_date() 从技术上讲,是模板标签。然而,它有一个有些不寻常的方面,即每个日期只输出一次,所以如果页面上有来自同一日期的多个帖子,它们不会全部显示出来。

get_the_date() 是一个较低的级别,检索(而不是输出)没有逻辑位的帖子日期。

结束