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

has_custom_logo( int $blog_id )

网站是否有自定义logo

custom

has 判断有more...

logo


参数

$blog_id

(int) (可选) 相关博客的ID,默认值是当前博客的ID。


返回

(bool) 网站是否有自定义logo



源码

查看源码 官方文档


更新日志

版本描述
4.5.0开始引入

使用示例

  • 示例1
  • 示例2

    要获取自定义logo图像的URL:

    $custom_logo_id = get_theme_mod( 'custom_logo' );
    $image = wp_get_attachment_image_src( $custom_logo_id , 'full' );
    echo $image[0];