主题的大部分由三个文件组成,header.php, footer.php 和style.css.
如果要加载可选的页眉、页脚和/或样式表,只需在类别模板内更新相应的调用即可(category.php) 拉入不同的页眉/页脚/样式表。
实例
get_header();
变成。
get_header( \'cat\' );
然后将包括
header-cat.php 而不是
header.php.
您也可以使用
get_footer()
调用以包含其他页脚文件。
Codex页面介绍了使用备用页眉/页脚文件
http://codex.wordpress.org/Function_Reference/get_header
http://codex.wordpress.org/Function_Reference/get_footer
对于样式表,只需更改它(在新的头文件中)。
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( \'stylesheet_url\' ); ?>" />
比如。。
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( \'stylesheet_directory\' ); ?>/style2.css" />
或者,使用
wp_enqueue_style
正如另一个答案中所建议的那样。
完全自定义HTML和CSS,不影响任何其他类型的页面(并且不需要更改现有的页眉/页脚/样式表)。