1 Star 0 Fork 32

飞扬2016/WordPress简约博客主题Qzdy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tags.php 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
秋天不回来 提交于 2022-02-28 22:31 . v4.7更新
<?php
/* Template Name: 页面模板--Tags
*/
?>
<?php get_header();?>
<!--上面是头部-->
<div class="layui-content">
<div class="layui-container">
<div class="layui-row layui-col-space15 main">
<div class="layui-col-md12 layui-col-lg12">
<!--内容开始-->
<div class="title-article">
<h1><?php the_title(); ?></h1>
</div>
<div class="text" itemprop="articleBody">
<div id="md_content_2" style="overflow: hidden;" style="" class="md_content markdown-body editormd-html-preview" style="min-height: 50px;">
<p>
<?php
$tags_count = 600;
$tagslist = get_tags('orderby=count&order=DESC&number='.$tags_count);
$html = '<ul class="post_tags">';
foreach ($tagslist as $tag){
$color = dechex(rand(0,16777215));
$tag_link = get_tag_link($tag->term_id);
$html .= "<li><a href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}' style='color:#{$color}'>";
$html .= "{$tag->name} ({$tag->count})</a></li>";
}
$html .= '</ul>';
echo $html;
?>
</p>
</div>
<!--底部完毕-->
<div class="the-end">- THE END -</div>
<!--修改日期-->
<div class="time-text">
<i class="layui-icon iconfont iconshijian"></i> 最后修改:<?php the_modified_time('Y年n月d日 H:i:s'); ?></div>
<!--申明-->
</div>
<?php
$zero_footer_plk = _qzdy('zero-footer-plk');
if(!empty($zero_footer_plk)){?>
<?php if (comments_open() ) { ?>
<div class="page-comt<?php echo qzdy_prevent_theme(); ?>">
<?php $file=""; $separate_comments="";?>
<?php comments_template( $file, $separate_comments ); ?>
</div>
<?php } } ?>
</div>
</div>
</div>
</div>
</div>
<!--底部版权-->
<?php get_footer();?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mpxq22/qzdy.git
git@gitee.com:mpxq22/qzdy.git
mpxq22
qzdy
WordPress简约博客主题Qzdy
master

搜索帮助