“显示站点标题和标语”复选框中的定制器中的设置名称是什么?

时间:2016-11-25 作者:jetyet47

更具体地说,如何根据是否选中该框,有条件地在页脚中显示网站标题和标语?

1 个回复
SO网友:socki03

看来答案是display_header_text().

我在customizer.php 在2016年的主题中。

相关代码:

/**
 * Styles the header text displayed on the site.
 *
 * Create your own twentysixteen_header_style() function to override in a child theme.
 *
 * @since Twenty Sixteen 1.0
 *
 * @see twentysixteen_custom_header_and_background().
 */
function twentysixteen_header_style() {
    // If the header text option is untouched, let\'s bail.
    if ( display_header_text() ) {
        return;
    }

    // If the header text has been hidden.
    ?>
    <style type="text/css" id="twentysixteen-header-css">
        .site-branding {
            margin: 0 auto 0 0;
        }

        .site-branding .site-title,
        .site-description {
            clip: rect(1px, 1px, 1px, 1px);
            position: absolute;
        }
    </style>
    <?php
}
endif; // twentysixteen_header_style

相关推荐