我的WordPress装在网站http://www.lady880.com的二级目录dress下,和网站是同一个空间,我想将wordpress的“最新文章”板块调用到index首页的右下角。每当wordpress发新文章时,首页的“最新文章”板块也自动更新。用如下代码:
<?php
define('WP_USE_THEMES', false);
require('./dress/wp-blog-header.php');
query_posts('showposts=1');
?><?php
while (have_posts()): the_post();
?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Read more...</a></p>
<?php endwhile; ?>可调用出来的是乱码,要如何改?只需要显示文章标题就行。。