在被调用的wordpress系统目录下,新建一个文件:list.php,编辑该文件,代码如下:
<?php
define(‘WP_USE_THEMES’, false);
require(‘./wp-load.php’);
$recent = new WP_Query(‘showposts=10&order=DESC&orderby=ID’);while($recent->have_posts()) : $recent->the_post(); update_post_caches($posts); ?>
<p><span><?php the_modified_time(‘m-d’); ?></span><a href=”<?php the_permalink(); ?>” target=”_blank”><?php echo mb_strimwidth(strip_tags(apply_filters(‘the_title’, $post->post_title)), 0, 50,” “); ?></a></p>
<?php endwhile; ?>
注意:其中的样式,自行更替。
在需要调用的地方,输入下面的代码:
请记得,将url的地址,修改为自己的。