当前浏览:首页 / WordPress函数 / wp_attachment_is_image()

wp_attachment_is_image( int|WP_Post $post = null )

判断附件是否为图片

attachment 附件more...

imagemore...

is 条件判断more...


描述

更多类似的主题函数信息,请查看主题开发手册中的条件标签文章。


参数

$post

(int|WP_Post)(可选) 附件ID或对象。默认值为全局$post。

默认值: null


返回

(bool) 附件是否为图像。



源码

查看源码 官方文档


更新日志

版本描述
4.2.0修改为wp_attachment_is()的包装器,并允许传递WP_Post对象。
2.1.0开始引入

使用示例

  • 示例1

    基本示例

    要检查post ID 37的附件是否为图片:

    $id = 37;
    if ( wp_attachment_is_image( $id ) ) {
    	printf( 'Post %d is an image!', $id );
    } else {
    	printf( 'Post %d is not an image.', $id );
    }
    

    由@keraweb编辑