在循环中获取the_time(实际上是日期)

时间:2011-01-12 22:18:08

标签: php wordpress loops

我有一个显示最新帖子的循环。我想更改说明. get_comments_number($question->ID) .的部分而不是那个获取日期。 (<?php the_time('F j, Y') ?>)

这是循环:

$loophtml = $loophtml . "<span class='list-number-answers'>" . get_comments_number($question->ID) . " comentarios</span>&nbsp;&#183;&nbsp<a href='" . get_permalink($question->ID) ."'>Comentar</a>";

我不确定如何向the_time添加($ question-&gt; ID)。有人能帮我一把吗?感谢

1 个答案:

答案 0 :(得分:1)

我认为您正在寻找get_the_time,它会返回特定日期的时间:

get_the_time('F j, Y', $question->ID)

the_time只能在The Loop中使用。