我尝试在我的主网站上显示最近的帖子,这些帖子在wordpress之外,我的博客实际上是blog.domain.com,如果有这个帮助,wordpress的目录根目录在我的主网站上,这是我的代码:
// Include the wp-load'er
include('blog_subdomain/wp-load.php');
// Get the last 10 posts
// Returns posts as arrays instead of get_posts' objects
$recent_posts = wp_get_recent_posts(array(
'numberposts' => 10
));
// Do something with them
echo '<ul>';
foreach($recent_posts as $post) {
echo '<li><a href="', get_permalink($post['ID']), '">', $post['post_title'], '</a></li>';
}
echo '</ul>';
但是当我尝试访问我希望显示最近帖子的页面时,它会将我重定向到博客地址。