WordPress判断是否有图片并调用出来

wordpress文章页添加判断是否有图片功能,如果有图片并调用显示出来。在functions.php添加以下代码就可以轻松实现: /** * Check if there are any images in the article wodepress.com */ function is_has_image(){ if ( is_single () || is_page()) { global $post; if( has_post_thumbnail() ) return …