Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想要有图像的提要项目。我如何过滤掉那些没有的?
在您的项目循环中,您可以检查 img 标签的项目内容:
foreach ($feed->get_items() as $key=>$item) { if ( stristr($item->get_content(), '<img') == false ) { // show the article } }
此代码将仅显示没有图像的文章。做相反的事情,改变条件:
if ( stristr($item->get_content(), '<img') != false ) {