wordpress 分类页调用当前分类所有子分类文章列表代码如下:
<?php global $cat; $cats = get_categories(array( 'child_of' => $cat, 'parent' => $cat, 'hide_empty' => 0 )); $c = get_category($cat); if(empty($cats)){?> <div class="item"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> <p><a href="<?php the_permalink(); ?>">全文阅读>></a></p> <div class="meta"><?php the_time('Y-m-d'); ?> | 标签: <?php the_tags('', ' , ', ''); ?></div> </div> <?php endwhile; ?> <?php else: ?> <div class="post"><p>文章稍后更新</p></div> <?php endif; ?> </div> <div class="navigation"> <span class="alignleft"><?php next_posts_link('« Older posts') ?></span> <span class="alignright"><?php previous_posts_link('Newer posts »') ?></span> </div> <?php}else{ foreach($cats as $the_cat){ $posts = get_posts(array( 'category' => $the_cat->cat_ID, 'numberposts' => 10, )); if(!empty($posts)){ echo ' <div class="item cat_item"> <div class="item_title"><h2><a title="'.$the_cat->name.'" href="'.get_category_link($the_cat).'">'.$the_cat->name.'</a></h2></div> <ul class="box_list">'; foreach($posts as $post){ echo '<li><span class="alignright">'.mysql2date('Y-m-d', $post->post_date).'</span> <a title="'.$post->post_title.'" href="'.get_permalink($post->ID).'">'.$post->post_title.'</a></li>'; } echo '</ul> </div>'; } }}?>
可以将上面代码整合到自己的主题 category.php 文件中
你可能对这些文章感兴趣:
- wordpress短代码实现分类文章ajax筛选
- wordpress给所有评论用户推送文章更新
- 宝塔面板无法记录网站日志解决办法
- 防止wordpress网站目录中敏感文件被嗅探扫描下载
- WordPress前台展示最近更新的文章列表
- wordpress插件中文汉化指南
- wordpress后台链接添加nofollow选项
- wordpress给用户中心author页添加评论功能
- 一个虚拟主机如何搭建多个网站?
- wordpress评论用户头像随机显示办法分享
- 高度塌陷到底是什么如何解决?
- wordpress主题给评论添加自定义字段
- wordpress强制用户第一次登录时修改密码
- 输出Bootstrap风格化的wordpress菜单
如有疑问,请前往问答中心反馈!
反馈