Wordpress远程获取功能使用?

时间:2012-11-02 06:05:07

标签: wordpress curl

我希望与其他网页的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内容代码。关于如何仅在输出中显示标题和帖子链接的问题。

感谢。

2 个答案:

答案 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功能进行检索和解析以及自动缓存。