有些人没有时间写长篇大论,也希望用发布类似于微博/说说的内容,今天就给大家分享给添加类似微博/说说的功能,无需要插件。
1.打开你主题的「functions.php」文件,添加下面的内容:
//说说
add_action('init', 'my_custom_init'); function my_custom_init() { $labels = array( 'name' => '说说', 'singular_name' => 'singularname', 'add_new' => '发表说说', 'add_new_item' => '发表说说', 'edit_item' => '编辑说说', 'new_item' => '新说说', 'view_item' => '查看说说', 'search_items' => '搜索说说', 'not_found' => '暂无说说', 'not_found_in_trash' => '没有已遗弃的说说', 'parent_item_colon' => '', 'menu_name' => '说说' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array('title','editor','author') ); register_post_type('shuoshuo',$args); }
2.新建立一个php文件,命名为shuoshuo.php,复制下面的内容进去,保存后,把shuoshuo.php放到主题目录里面。
-
需要注意的是,如果想要单纯地写文字的话,可以把最后一段代码中的改成。
# 更多技巧,请关注「专题」