請提供如何集成的代碼。我在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
您需要包括'WP-負荷.php'文件,如果您在wp之外執行任何wp操作。 – Rikesh