我有 magento 电子商务网站和 wordpress 博客网站。我想在我的 magento 主页上显示最近的 5 篇博客文章。我尝试使用以下代码
// Get the last 3 posts.
<?php
require('/the/path/to/your/wp-blog-header.php');
?>
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br />
<?php endwhile;?>
我将此文件复制到新的 .phtml 文件中,并将该文件称为主页。但是在这样做之后,我的主页只显示标题和品种屑......这个问题的任何解决方案表示赞赏......