Merge pull request #53 from aledeg/wordpress
[WordpressBridge] Fix posts discovery for PHP 5.5-
This commit is contained in:
commit
3c363da883
1 changed files with 5 additions and 4 deletions
|
@ -5,10 +5,10 @@
|
||||||
* Returns the 3 newest full posts of a Wordpress blog
|
* Returns the 3 newest full posts of a Wordpress blog
|
||||||
*
|
*
|
||||||
* @name Wordpress Bridge
|
* @name Wordpress Bridge
|
||||||
* @homepage https://wordpress.com/
|
* @homepage https://wordpress.com/
|
||||||
* @description Returns the 3 newest full posts of a Wordpress blog
|
* @description Returns the 3 newest full posts of a Wordpress blog
|
||||||
* @maintainer aledeg
|
* @maintainer aledeg
|
||||||
* @update 2014-05-26
|
* @update 2014-05-26
|
||||||
* @use1(url="blog URL (required)", name="blog name")
|
* @use1(url="blog URL (required)", name="blog name")
|
||||||
*/
|
*/
|
||||||
class WordpressBridge extends BridgeAbstract {
|
class WordpressBridge extends BridgeAbstract {
|
||||||
|
@ -25,7 +25,8 @@ class WordpressBridge extends BridgeAbstract {
|
||||||
|
|
||||||
$html = file_get_html($this->url) or $this->returnError("Could not request {$this->url}.", 404);
|
$html = file_get_html($this->url) or $this->returnError("Could not request {$this->url}.", 404);
|
||||||
|
|
||||||
if(!empty($html->find('.post')) ) {
|
$posts = $html->find('.post');
|
||||||
|
if(!empty($posts) ) {
|
||||||
$i=0;
|
$i=0;
|
||||||
foreach ($html->find('.post') as $article) {
|
foreach ($html->find('.post') as $article) {
|
||||||
if($i < 3) {
|
if($i < 3) {
|
||||||
|
|
Loading…
Reference in a new issue