v1.2 — 拾影独立为 photo 类型

- 新增 photo 自定义文章类型(专属拾影)
- page-photos.php 只查询 photo
- single-photo.php 无封面图、返回拾影链接
- 月光森林/海岸灯塔/古镇巷子 转为 photo 类型
- 首页和笺文不包含 photo
This commit is contained in:
2026-05-04 00:00:47 +08:00
parent 16c3e10494
commit a31356628a
3 changed files with 67 additions and 1 deletions
+20
View File
@@ -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',
));
}