3
1
Back

Tech $xpath = $this->get_xpath_dealie($article['link']); $aftercomic = $this->get_img_tags($xpath, "//div[@id='content']/img", $article); } elseif (strpos(strtolower($article['link']), 'giantitp.com/comics/') !== FALSE) { $article['content'] .= "
Alt: " . $article['id']; } function get_xpath_dealie($link){ list($html, $content_type) = $this->get_content($link); //Sites that provide images and just need alt tags textified. } $article = $this->alt_textify($article); $entries = $xpath->query($query); $result_html = ''; foreach ($entries as $entry){ $article['content'] .= "

" . $entry->textContent . "

"; } } // Dead.

New Pull Request