我用笨,需要从博客作为blabla.com/blog位于页脚显示上次的3个员额。
当我下面创建一个test.php的文件。 它工作得很好,
test.php的
<?php
// Include Wordpress
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
query_posts('showposts=3');
?>
<ul>
<?php while (have_posts()): the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
但是当我复制相同的代码来footer_view.php笨的结构法,它不工作,并给予如下错误:
错误的笨footer_view:
致命错误:在/blabla/blog/wp-settings.php调用未定义方法stdClass的:: set_prefix()线268上的
任何想法可能是什么问题? :/欣赏帮助!