确定Get_the_Image在Get the Image插件上是否有图像 时间:2013-10-27 作者:Fujianto 是否有方法/功能确定Get the image 插件成功从帖子中获取图像?类似于has_post_thumbnail 在WordPress的特色图片上。我需要知道特征图像是否存在,因为其他HTML元素(绝对位置)/依赖于特征图像进行定位。谢谢 1 个回复 最合适的回答,由SO网友:helgatheviking 整理而成 您可以对的结果运行条件检查get_the_image(). 它是否返回了图像。if ( function_exists( \'get_the_image\' ) ) { $image = get_the_image(array(\'echo\'=>false)); if( ! empty ( $image ) ) { // do something with the image } else { // do something if there is no image } } 结束 文章导航