2013-06-24 65 views
1

請提供如何集成的代碼。我在public_html文件夾中保留了博客,博客有一個數據庫,並且網站有我創建的其他數據庫。我需要在主頁的codeigniter站點顯示最近的兩個wordpress帖子。

我嘗試了這些代碼在我的網站index.php

<?php require('blog/wp-blog-header.php');?> 

<?php 
    $args = array('numberposts' => 2, 'post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date"); 
    $postslist = get_posts($args); 

    foreach ($postslist as $post) : setup_postdata($post); ?> 
     <div class="events"> 
      <p><strong><?php the_date(); ?></strong></p> 
      <p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> 
     </div> 
<?php endforeach; ?> 

但顯示像

Fatal error: Call to undefined function wp_get_recent_posts() in 
/home/sharelok/public_html/application/views/index.php on line 124 
+1

您需要包括'WP-負荷.php'文件,如果您在wp之外執行任何wp操作。 – Rikesh

回答

1

錯誤你可以試試這個

define('WP_USE_THEMES', false); 
require('blog/wp-load.php'); 
$postslist = get_posts(array('posts_per_page' => 2, 'orderby'=> 'post_date')); 
foreach($postslist as $post) : setup_postdata($post); ?> 
    <div class="events"> 
     <p><strong><?php the_date(); ?></strong></p> 
     <p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> 
    </div> 
<?php endforeach; ?> 
+0

致命錯誤:無法在/home/sharelok/public_html/blog/wp-includes/link-template.php上重新聲明site_url()(以前在/home/sharelok/public_html/system/helpers/url_helper.php:42中聲明)行1946 – leela

+0

我收到以上錯誤,但在本地它顯示像(錯誤連接數據庫) – leela

+2

@leela,這是因爲,'Ci'和'WP'都有函數'site_url'和'require(' blog/wp-load.php');''WP'正在被包含在內,因此'site_usl'正在它的核心中被聲明。所以,如果你可以重命名'CI'is'site_url',那麼問題就會解決,但我建議你關注[這篇文章](http://philpalmieri.com/2009/06/codeigniter-and-wordpress-play -well-together /)和[this one](http://oscardias.com/development/php/codeigniter/integrating-wordpress-with-codeigniter/)。 –

相關問題