-2

我已经尝试了许多关于自定义标头支持的教程,但我能够添加支持,但我无法更改标头..这里是 Index.php

<div id="page">
    <div id="header"><h1>Super Plain</h1></div>
    <div id="nav">
        <ul>
            <?php wp_list_pages('title_li=');?>
        </ul>
    </div>

    <div id="main">
        <div id="content">
              <?php if(have_posts()): while(have_posts()): the_post(); ?>
                <h1><?php the_title(); ?></h1>
                <?php the_content(); ?>
              <?php endwhile; endif; ?>
        </div><!--/ #content -->

        <div id="sidebar">
            <h2>News</h2>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ornare sodales porta. Mauris laoreet tempor luctus. Nunc consequat </p>        
        </div><!--/ #sidebar -->  
    </div><!--/ #main -->

</div><!--/ #page -->

这是我的CSS

#header{
        background-color:#c1d9c5;
        color:#405952;
        padding:55px;
}
#header h1{
        margin:0;
        font-size:72px;
        font-weight:normal;
}

这是我的function.php文件

<?php
$args = array(
    'width'         => 980,`enter code here`
    'height'        => 60,
    'default-image' => get_template_directory_uri() . '/images/header.jpg',
);
add_theme_support( 'custom-header', $args );
?>
4

1 回答 1

0

当您可以通过编辑 CSS 样式表轻松更改标题图像时,为什么要尝试启用自定义标题?

于 2013-07-26T21:04:25.837 回答