f09f3bbfef
- 首页文案更新为'自白者的栖息地' - 近笺 12 条 + 查看全部链接 - 笺文详情页加浏览量 - 登录弹窗替代 alert - 评论区修复双重 border-top - 退出登录带回跳 - 时间格式统一到秒 - 文案优化
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Template Name: 拾影画廊
|
|
*/
|
|
|
|
get_header();
|
|
|
|
// 获取所有带特色图片的文章(普通文章 + 可选 tucao)
|
|
$photo_query = new WP_Query(array(
|
|
'post_type' => 'photo',
|
|
'posts_per_page' => -1,
|
|
));
|
|
?>
|
|
|
|
<div class="section-header">
|
|
<span class="section-title">📷 拾影</span>
|
|
<span class="section-filter" style="font-size:13px;color:var(--ink-lighter);">在时光里截图</span>
|
|
</div>
|
|
|
|
<?php if ($photo_query->have_posts()) : ?>
|
|
<div class="gallery-masonry">
|
|
<?php while ($photo_query->have_posts()) : $photo_query->the_post(); ?>
|
|
<a href="<?php the_permalink(); ?>" class="gallery-item">
|
|
<?php if (has_post_thumbnail()) : ?>
|
|
<?php the_post_thumbnail('medium', array('alt' => get_the_title(), 'class' => 'gallery-img')); ?>
|
|
<?php else : ?>
|
|
<span class="gallery-empty">空笺</span>
|
|
<?php endif; ?>
|
|
<div class="gallery-caption">
|
|
<?php the_title(); ?>
|
|
· <?php the_author_meta('display_name'); ?>
|
|
</div>
|
|
</a>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
<?php wp_reset_postdata(); ?>
|
|
<?php else : ?>
|
|
<p style="color:var(--ink-lighter);text-align:center;padding:60px 0;">尚无光影,敬请期待</p>
|
|
<?php endif; ?>
|
|
|
|
<?php get_footer(); ?>
|