我想使用 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 中仅显示标题和帖子链接的问题。
谢谢。