对于自定义背景,您可以调用add_custom_background
, 对于很酷的标题图像,它是add_custom_image_header
. 你需要把这两个连接起来after_setup_theme
:
<?php
add_action( \'after_setup_theme\', \'wpse27586_setup_theme\' );
function wpse27586_setup_theme()
{
add_custom_background();
add_custom_image_header( \'some_callback_for_front\', \'some_callback_for_admin\' );
}
添加自定义图像标题比看起来要复杂得多,所以请看一下《二十一世纪》
functions.php
函数中的文件
twentyeleven_setup
, 从75号线开始,对于一些人来说。代码的注释非常好。