我希望与其他网页的wp_remote_curl功能共享和显示我的最新内容。
<?php $response = wp_remote_get( 'http://feeds.feedburner.com/fatihtoprak/blog' );
if( is_wp_error( $response ) ) {
echo 'Couldnt get the contents!';
} else {
// echo $response['body'];
echo '<pre>';
print_r( $response );
echo '</pre>';
}
?>
输出为here。
这是我的wp_remote_get内容代码。关于如何仅在输出中显示标题和帖子链接的问题。
感谢。
答案 0 :(得分:0)
法提赫,为什么你不使用fetch_feed
http://codex.wordpress.org/Function_Reference/fetch_feed
答案 1 :(得分:0)
Serkan是对的。
从http://codex.wordpress.org/Function_Reference/fetch_feed
的第一段开始检索外部Feed并解析它。使用SimplePie和FeedCache功能进行检索和解析以及自动缓存。