v1.2 — 拾影独立为 photo 类型
- 新增 photo 自定义文章类型(专属拾影) - page-photos.php 只查询 photo - single-photo.php 无封面图、返回拾影链接 - 月光森林/海岸灯塔/古镇巷子 转为 photo 类型 - 首页和笺文不包含 photo
This commit is contained in:
@@ -196,3 +196,23 @@ function kjweji_setup_pages() {
|
||||
}
|
||||
flush_rewrite_rules();
|
||||
}
|
||||
|
||||
// 自定义文章类型:拾影
|
||||
add_action('init', 'kjweji_register_photo');
|
||||
function kjweji_register_photo() {
|
||||
register_post_type('photo', array(
|
||||
'labels' => array(
|
||||
'name' => '拾影',
|
||||
'singular_name' => '拾影',
|
||||
'add_new' => '发拾影',
|
||||
'add_new_item' => '发新拾影',
|
||||
'edit_item' => '编辑拾影',
|
||||
),
|
||||
'public' => true,
|
||||
'has_archive' => false,
|
||||
'show_in_rest' => true,
|
||||
'supports' => array('title', 'editor', 'author', 'thumbnail'),
|
||||
'menu_position' => 26,
|
||||
'menu_icon' => 'dashicons-format-gallery',
|
||||
));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user