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
+1 -1
View File
@@ -7,7 +7,7 @@ get_header();
// 获取所有带特色图片的文章(普通文章 + 可选 tucao)
$photo_query = new WP_Query(array(
'post_type' => 'post',
'post_type' => 'photo',
'posts_per_page' => -1,
'meta_key' => '_thumbnail_id',
));