【发布时间】:2012-05-28 14:52:21
【问题描述】:
我有 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 文件中,并将该文件称为主页。但是在这样做之后,我的主页只显示标题和品种屑...... 对此问题的任何解决方案表示赞赏......
【问题讨论】:
-
尝试创建简单的模板(仅显示 5 个帖子)并执行 iframe..
标签: wordpress magento integration