今天修改主题的时候网上搜索了半天也没找到可用的方法,而且都会报错,最后终于在WP官方论坛找到了相应的方法。
其实使用WP默认Widgets类就可以获取最新评论。
方法如下。
[php]
<?php
WP_Widget_Recent_Comments::widget(array("title" => "My Widget", 'before_title'=>'<h3>', 'after_title'=>'</h3>', 'before_widget'=>'<div>', 'after_widget'=>'</div>'), array("title" =>'Recent Comments', "number" => 5));
?>
[/php]
获取最新文章的方法也类似。
[php]
<?php
WP_Widget_Recent_Posts::widget(array("...