如何在wordpress网站上获取MySQL的更新行?

时间:2012-01-16 08:47:15

标签: php mysql wordpress

我想显示从MySQL到wordpress网站的更新行的时间和日期。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:0)

假设您要显示修改帖子的日期/时间,请查看以下链接。

http://codex.wordpress.org/Function_Reference/the_modified_date#Date_and_Time

// Displays the date and time.

<p>Modified: <?php the_modified_date('F j, Y'); ?> at <?php the_modified_date('g:i a'); ?></p>

// Modified: December 2, 2006 at 10:36 pm

答案 1 :(得分:0)

Modified Date: <?php the_modified_date('F j, Y'); ?> at <?php the_modified_date('g:i a'); ?>

使用此功能可以获得修改日期