我正在尝试将最受欢迎的部分从 bbc.co.uk/news/ 网站抓取到 WordPress 插件中。我目前有以下代码:
<?php
/*
Plugin Name: BBC Scrape
Description: Reprints the BBCs Most popular stories
Author: The Health Check Team
Version: 0.1-alpha
*/
include('simple_html_dom.php');
$articles = array();
getArticles('http://www.bbc.co.uk/news/');
function getArticles($page) {
global $articles;
<br>
$html = new simple_html_dom();
$html->load_file($page);
$items = $html->find('div[class=livestats livestats-tabbed tabbed most-popular]');
foreach($items as $post) {
# remember comments count as nodes
$articles[] = array($post->children(3)->outertext,
$post->children(4)->first_child()->outertext,
$post->children(5)->first_child()->outertext);
}
}
?>
我以前使用过这样的功能wp_remote_get
,但是刚刚获得了整个网站。而且我无法使用 DOM Parse 将其过滤到最流行的部分。我在此代码中遇到的错误是文档中未编辑的函数find()
错误>simple_html_dom.php
我基本上不明白如何自己获得 bbc.co.uk/news 部分中最受欢迎的部分。