可以是一个静态的页面!
如图所示!?》
如果是更改皮肤的首页地址,可以通过hooks实施,具体可查看wp-includes/template.php第29行:
return apply_filters( "{$type}_template", locate_template( $templates ) );
根据这个hooks,添加相关函数
add_filter('index_template', 'custom_index_template');
function custom_index_template( $template ){
return "你指定的首页文件地址, ex: http://yourdormain.com/wordpress/
custom/index.php“;
}