要使WordPress主题支持网站地图和分类目录,需要进行以下步骤:
在主题的functions.php文件中添加以下代码:
add_action( 'after_setup_theme', 'add_sitemap' );
function add_sitemap() {
add_theme_support( 'html5', array( 'sitemap' => 'sitemap.xml' ) );
}
这样就可以在主题的头部(header)添加一个link标签,指向生成的网站地图。
在主题的functions.php文件中添加以下代码:
add_action( 'after_setup_theme', 'add_categories' );
function add_categories() {
add_theme_support( 'post-thumbnails' );
add_theme_support( 'category-thumbnails' );
}
这样就可以在文章编辑页面中选择一个缩略图,显示在分类目录中。
示例代码已经提供,无需进一步说明。