上面的答案对我不适用。在研究了2017年的主题后,我想出了这个对我有用的解决方案。根据需要将其添加到wordpress主题页。
<?php
$site_description = get_bloginfo( \'description\', \'display\' );
if ( $site_description || is_customize_preview() ) :
?>
<h2 class="site-description"><?php echo $site_description; ?></h2>
<?php endif; ?>
CSS类“site description”可以通过在函数中添加以下内容来定义。php。大多数网站都已经设置了这样的主题,所以如果你正在修改其他人制作的主题,那么值得查找这个来检查H2 Css类名。
add_theme_support(\'custom-logo\');
function yourPrefix_custom_logo_setup()
{
$defaults = array(
\'height\' => 207,
\'width\' => 276,
\'flex-height\' => false,
\'flex-width\' => false,
\'header-text\' => array(\'site-title\', \'yourPrefix-site-description\'),
);
add_theme_support(\'custom-logo\', $defaults);
}
add_action(\'after_setup_theme\', \'yourPrefix_custom_logo_setup\');
您应该将前缀更改为您正在处理的主题的前缀,以防止冲突等。