要使“210”主题的标题不那么高(即像素更少的高度),请将此代码放在主题的底部“functions.php
“文件(确保更改编号180
到您想要的任何高度):
<?php
add_action(\'twentyten_header_image_height\',\'yoursite_header_image_height\');
function yoursite_header_image_height($height) {
return 180; // Modify this to whatever pixel height you want.
}
然后,您需要转到管理控制台中的“
外观>标题”,并上载新的较小图像(这是指向该管理页面的URL):http://example.com/wp-admin/themes.php?page=custom-header
下面是管理页面的外观:您还可以考虑对子主题进行修改(如果尚未修改的话)这是an article (这太复杂了)但其实很简单,只需在web服务器上的/wp-content/themes/
“子目录(我称之为”/wp-content/themes/yoursite/
)并创建“style.css
“在该目录中,包含以下内容:
/*
Theme Name: Your Child Theme Name
Description: Theme for your-site.com
Author: Your Name
Version: 1.0
Template: twentyten
*/
@import url("../twentyten/style.css");
然后您可以创建一个新“functions.php
“文件并将上面的PHP代码放入其中,而不是修改Twenty Ten主题目录中的文件,并且在Twenty Ten进行安全更新时必须再次进行修改。