我只是想知道人们在WordPress中使页眉和页脚部分可编辑时采取了什么方法?
对于大多数网站而言,这些区域是静态的,客户不希望或不需要修改它们。
我确实安装了很棒的高级自定义字段插件,我不确定是否可以使用它?
非常感谢所有建议。
答案 0 :(得分:4)
您可以添加两个小部件,一个添加到标题,一个添加到页脚。这可以通过将以下内容添加到functions.php
文件来完成:
register_sidebar( array(
'name' => __( 'Header information', 'twentytwelve' ),
'id' => 'header-information',
'description' => __( 'Information for the header', 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => __( 'Footer information', 'twentytwelve' ),
'id' => 'footer-information',
'description' => __( 'Information for the footer', 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
然后添加
dynamic_sidebar( 'header-information' );
到header.php
文件和
dynamic_sidebar( 'footer-information' );
到footer.php
文件
然后在后端的小部件部分中,您可以向页眉和页脚部分添加小部件。有了它,您可以从页眉/页脚添加/删除图像/文本等。