Ben CodeIgniter'ı kullanımı ve blabla.com / blog bulunduğu gibi blogdan footer'larındaki son 3 Mesajları görüntülemek gerekir.
Ben aşağıdaki gibi bir test.php dosyası oluşturduğunuzda. iyi çalışıyor,
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>
Ben CodeIgniter structre bir footer_view.php için aynı kodu kopyalayın zaman, o iş ve aşağıdaki gibi hata veriyor değil:
error at codeigniter footer_view:
Fatal error: Call to undefined method stdClass::set_prefix() in /blabla/blog/wp-settings.php on line 268
bir fikrin ne sorun olabilir? :/ Takdir yardımcı olur!