0
我正在使用magento電子商務網站& wordpress博客網站。我想在我的magento主頁上顯示最近的5篇博文。我試着用下面的代碼如何顯示最近從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文件中,我把那個文件叫做主頁。但做完這個後,我的主頁只顯示標題& breedcrumbs ... 任何解決方案,這個問題是讚賞......
嘗試創建簡單的模板(只顯示5篇文章),並做iframe .. – ruslyrossi