要显示从“外观”>“自定义”>“站点标识”输入的文本,可以使用以下代码:
<h1><a href="<?php echo esc_url( home_url( \'/\' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( \'name\', \'display\' ) ); ?>" rel=\'home\'><?php bloginfo( \'name\' ); ?></a></h1>
否则,请告诉我们该文本的来源。
You may also try the following:
打开功能。php,并添加以下内容:
add_theme_support( \'custom-logo\', array(
\'height\' => 100,
\'width\' => 400,
\'flex-height\' => true,
\'flex-width\' => true,
\'header-text\' => array( \'site-title\', \'site-description\' ),
) );
然后,在希望徽标显示的任何位置添加以下代码:
<?php
$custom_logo_id = get_theme_mod( \'custom_logo\' );
$image = wp_get_attachment_image_src( $custom_logo_id , \'full\' );
?>
<img src="<?php echo $image[0]; ?>" alt="">
然后在“外观”>“自定义”>“站点标识”中添加您的徽标文本,如下所示: