0

我想使用 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>';
                }
            ?>

输出在这里

这是我的 wp_remote_get 内容代码。关于如何在 output 中仅显示标题和帖子链接的问题

谢谢。

4

2 回答 2

0

Fatih,为什么你不使用fetch_feed http://codex.wordpress.org/Function_Reference/fetch_feed

于 2012-11-02T07:40:00.260 回答
0

塞尔坎是对的。

从http://codex.wordpress.org/Function_Reference/fetch_feed的第一段

检索外部提要并对其进行解析。使用 SimplePie 和 FeedCache 功能进行检索和解析以及自动缓存。

于 2012-11-03T05:31:41.627 回答