Wordpress自定义小工具logo调用设置(可视化)

在主题开发中,需要调用网站的logo,最简单的办法就是用wp自带的函数,那就是the_custom_logo(),使用它还可以通过后台-自定义-logo,边修改边预览,还是很香的。

        自定义徽标支持应首先使用add_theme_support()添加到主题中,然后使用the_custom_logo()在主题中调用

Wordpress自定义小工具logo调用设置(可视化)_第1张图片

直接上代码:

1.在functions.php中 ,添加

// 自定义logo 在需要位置调用 the_custom_logo() 
    function themename_custom_logo_setup() {
        $defaults = array(
            'height'      => 100,
            'width'       => 400,
            'flex-height' => true,
            'flex-width'  => true,
            'header-text' => array( 'site-title', 'site-description' ),
        );
        add_theme_support( 'custom-logo', $defaults ); //添加到主题中
    }
    add_action( 'after_setup_theme', 'themename_custom_logo_setup' );

2.在需要位置调用

修改上传logo的方法:后台——外观——自定义——logo

你可能感兴趣的:(WordPress,WordPress,Wordpress,logo,WP自定义logo)