自定义标题支持wordpress

时间:2013-07-26 20:20:30

标签: css wordpress

我已经尝试了许多自定义标头支持的教程,但我能够添加支持但我无法更改标头..这里是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 );
?>

1 个答案:

答案 0 :(得分:0)

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