4 Star 16 Fork 8

唐杰 / TangStyle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sidebar-category.php 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
Jarvis 提交于 2017-09-15 15:32 . Initial commit
<div id="sidebar">
<div id="search">
<form id="searchform" method="get" action="<?php bloginfo('siteurl'); ?>">
<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" size="30" x-webkit-speech />
<button type="submit" id="searchsubmit"><i class="iconfont">&#337;</i></button>
</form>
</div>
<div class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('分类页侧栏') ) : ?>
<div class="widget">
<h3>分类目录</h3>
<ul>
<?php wp_list_categories('depth=1&title_li=0&orderby=name&show_count=1'); ?>
</ul>
</div>
<div class="widget">
<h3>随机文章</h3>
<ul>
<?php $rand_posts = get_posts('numberposts=10&orderby=rand'); foreach( $rand_posts as $post ) : ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php echo mb_strimwidth(get_the_title(), 0, 42, '...'); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="widget">
<h3>标签云</h3>
<div class="tagcloud">
<?php wp_tag_cloud();?>
</div>
</div>
<?php endif; ?>
</div>
</div>
PHP
1
https://gitee.com/pmtangjie/TangStyle.git
git@gitee.com:pmtangjie/TangStyle.git
pmtangjie
TangStyle
TangStyle
master

搜索帮助