1 Star 7 Fork 1

神秘布偶猫/iEmo主题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
category.php 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
神秘布偶猫 提交于 2023-03-03 16:55 . 0.4.3
<?php get_head(); ?>
<div class="container category">
<?php get_header(); ?>
<script>
$('header .menu ul li.cate').addClass('current-menu-item');
</script>
<main>
<?php get_nav(); ?>
<div class="content">
<article>
<?php wp_list_categories(array('title_li' => '<h2>分类 <span>Categories.</span></h2>')); ?>
<div class="cate-box">
<ul>
<?php $cate_i = 0; ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<li>
<div class="left">
<a href="<?php the_permalink(); ?>">
<?php
if (has_post_thumbnail()) {
the_post_thumbnail();
} else { ?>
<img src="<?php if(first_post_cover(get_the_content())){echo first_post_cover(get_the_content());}else{echo default_post_cover();} ?>?<?=the_title()?>=<?php $cate_i++; echo $cate_i; ?>" alt="" >
<?php }
?>
</a>
</div>
<div class="right">
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<span><i class="iconfont icon-clock"></i> <?php echo get_the_date(); ?></span>
</div>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
<?php
if(get_next_posts_link()) { ?>
<div id="pagination-post" class="pagination">
<?php next_posts_link(__('<i class="iconfont icon-activity"></i> 加载更多文章')); ?>
</div>
<?php } else {
echo '<div class="pagination-post no-more-post"><a><i class="iconfont icon-anchor"></i> 好像就这么多</a></div>';
}
?>
</div>
</article>
<?php get_aside(); ?>
</div>
</main>
</div>
<?php get_foot(); ?>
<?php require 'inc/ajax/ajax-cate.php'; ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kannafay/iEmo.git
git@gitee.com:kannafay/iEmo.git
kannafay
iEmo
iEmo主题
master

搜索帮助