有one similar question, 但我似乎抽不出时间来了解发生了什么事。所以感谢您的帮助。。。
下面的代码在localhost上运行得很好,但在实时站点上我得到以下消息:WP HTTP Error:connect()超时!
<?php if (function_exists(\'fetch_feed\')) { ?>
<?php include_once(ABSPATH . WPINC . \'/feed.php\');
$feed = fetch_feed(\'http://participmontpellier.wordpress.com/feed/\');
if ( ! is_wp_error( $feed ) ) :
$limit = $feed->get_item_quantity(2);
$items = $feed->get_items(0,$limit);
endif;
if (!$items){
echo $feed->get_error_message();
} else {
foreach ($items as $item) { ?>
<h4><?php echo $item->get_date(\'F j, Y\'); ?></h4>
<p><?php echo $item->get_title(); ?></p>
<?php }
} ?>
<?php } ?>
谢谢!