文档说明整个都不能用,整个按照文档走的,就是加载不出来,
twentyfourteen主题的inc文件夹下,新建一个post_type.php文件。然后在twentyfourteen主题的functions.php文件(可以放到最前面)加入以下代码,包含post_type.php文件
- add_action('init', 'ashu_post_type');
- function ashu_post_type() {
- /**********幻灯片*****************/
- register_post_type( 'slider_type',
- array(
- 'labels' => array(
- 'name' => '幻灯片',
- 'singular_name' => '幻灯片',
- 'add_new' => '添加',
- 'add_new_item' => '添加新幻灯片',
- 'edit_item' => '编辑幻灯片',
- 'new_item' => '新幻灯片'
- ),
- 'public' => true,
- 'has_archive' => false,
- 'exclude_from_search' => true,
- 'menu_position' => 5,
- 'supports' => array( 'title','thumbnail'),
- )
- );
- }
显示不了侧边栏,一天的时间都浪费啦,阿西吧。。
后台添加个功能怎么就这么难!!!