文件:functions.php
只需将其添加到函数中即可。php文件(当然有
$wpse67109
设置)。
add_theme_support( \'custom-header\', $wpse67109_defaults );
文件:index.php
或任何其他模板get_head_image()
和get_custom_header()->foo
到处都是东西。
标题模板部分可能如下所示:
<header>
<hgroup>
<h1 class="site-title">
<?php
if ( display_header_text() )
{
printf(
\'<a href="%s" title="%s" rel="home">%s</a>\'
,esc_url( home_url( \'/\' ) )
,esc_attr( get_bloginfo( \'name\', \'display\' ) )
,get_bloginfo( \'name\' )
);
}
?>
</h1>
<?php if ( \'\' !== get_bloginfo( \'description\' ) ) : ?>
<h2 class="site-description"><?php bloginfo( \'description\' ); ?></h2>
<?php endif; ?>
</hgroup>
</header>