wordpress customizr主题显示徽标和标题

时间:2013-11-26 13:24:16

标签: wordpress wordpress-theming

我使用自定义主题,我想在标题部分显示徽标和标题。但我一次只能展示一件物品。如果没有徽标,请根据此文档http://www.themesandco.com/customizr/主题集标题。我想展示两者,有什么办法吗?我想显示徽标,左侧是公司名称。请帮忙

2 个答案:

答案 0 :(得分:3)

您可以使用以下代码使用* __ after_logo *钩子。 (复制并粘贴您的子主题或主题的functions.php文件)。

add_action( '__after_logo' , 'display_my_site_title');
function display_my_site_title() {
    //first checks if there is a logo uploaded
    $logo_src               = esc_url ( tc__f( '__get_option' , 'tc_logo_upload') ) ;
    if ( empty($logo_src) ) 
        return;

   //then print the site title after
    printf('<h1><a class="site-title" href="%1$s" title="%2$s | %3$s">%4$s</a></h1>',
        esc_url( home_url( '/' ) ),
        esc_attr( get_bloginfo( 'name') ),
        esc_attr( get_bloginfo( 'description' ) ),
        esc_attr( get_bloginfo( 'name') )
    );
}

代码已经过测试并且有效。 (你必须至少拥有主题的v3.0.14)

我希望这会有用。

答案 1 :(得分:1)

您需要调整以下文件:

customizr \份\类集管header_main.php

根据文件中的评论,它是正确的,它会显示标题或徽标:

LINE 115用于显示标题或徽标的模板