0

我想将我的 wordpress 博客的最新博客文章显示到我的 magento 商店,但在需要头文件时遇到问题。

我正在尝试这个:

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/blog/wp-blog-header.php');


 $args = array('numberposts'     => 5,
    'orderby'=> 'post_date',
    'post_type'       => 'post',
    'post_mime_type'  => ,
    'post_parent'     => ,
    'post_status'     => 'publish',
    'suppress_filters' => true ); 

  $postslist = get_posts($args);

  foreach($postslist as $post) : set_postdata($post); ?>

 <div><p><?php the_date(); ?></p>
    <p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></p>
 </div>

<?php endforeach; ?>
4

3 回答 3

0

Fishpig not working in our case but we got the solution somehow. We retrieved the data from wordpress, saved it to database and then called it via Magento.

于 2013-01-14T11:52:34.257 回答
0

@mukund002 你可以用几个解决方案来解决它。首先,您可以使用该Fishpig模块,该模块可以工作,或者您可以自己制作。为此,您必须在您的 Wordpress 博客和 Magento 中创建一些文件。http://www.magentowebshop.org/magento-webshop/magento-webshop-wordpress-integration-2/上有一本手册。它是荷兰语的,所以你可以使用谷歌翻译。我认为这个是在fishpig他们的模块中制作的。

于 2013-01-12T14:38:05.557 回答
0

Fishpig 是一个很棒的 Magento 扩展,可以帮助将您的 Wordpress 博客集成到您的 Magento 站点中。它的编码非常好,并在大量网站上使用。另外,它是免费的。那里有帮助您获取最新博客文章的功能:http: //fishpig.co.uk/wordpress-integration.html

于 2013-01-12T13:10:14.017 回答