_custom_logo_header_styles

函数
_custom_logo_header_styles ( No parameters )

custom_logo_header_styles: 这个函数用于在显示自定义标识时为页眉添加自定义样式。它不接受任何参数,并呼应自定义徽标标题样式的CSS。

根据Customizer的设置,添加CSS来隐藏自定义标志的标题文本。

function _custom_logo_header_styles() {
	if ( ! current_theme_supports( 'custom-header', 'header-text' )
		&& get_theme_support( 'custom-logo', 'header-text' )
		&& ! get_theme_mod( 'header_text', true )
	) {
		$classes = (array) get_theme_support( 'custom-logo', 'header-text' );
		$classes = array_map( 'sanitize_html_class', $classes );
		$classes = '.' . implode( ', .', $classes );

		$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
		?>
		<!-- Custom Logo: hide header text -->
		<style id="custom-logo-css"<?php echo $type_attr; ?>>
			<?php echo $classes; ?> {
				position: absolute;
				clip: rect(1px, 1px, 1px, 1px);
			}
		</style>
		<?php
	}
}

常见问题

FAQs
查看更多 >