代码拉取完成,页面将自动刷新
<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">ő</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 id="related_post" class="widget">
<h3><?php $category = get_the_category(); echo $category[0]->cat_name; ?>下的最新文章</h3>
<?php
if(is_single()){
$cats = get_the_category();
}
foreach($cats as $cat){
$posts = get_posts(array(
'category' => $cat->cat_ID,
'exclude' => $post->ID,
'showposts' => 10,
));
echo '<ul>';
foreach($posts as $post){
echo '<li><a href="'.get_permalink($post->ID).'">'.$post->post_title.'</a></li>';
}
echo '</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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。