展开全部
用法:<?php get_cat_ID( $cat_name ) ?>
参数:$cat_name 分类名称 默认值为"General"。类型为字符型可选
返回的值:出错时返回0,成功则返回分类ID号,类型为整数
示例:
<?php
$category_id = get_cat_id('Category Name');
query_posts('cat='.$category_id);
if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile; endif;
?>
参数:$cat_name 分类名称 默认值为"General"。类型为字符型可选
返回的值:出错时返回0,成功则返回分类ID号,类型为整数
示例:
<?php
$category_id = get_cat_id('Category Name');
query_posts('cat='.$category_id);
if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile; endif;
?>
展开全部
<ul>
<?php
$catid = get_the_category(); //通过这个函数可以获得该文章下的分类信息
$newcat_id = $catid[0]->cat_ID; //获取得到该文章下的分类ID
$recent = new WP_Query("showposts=20&cat=".$newcat_id);
while($recent->have_posts()) : $recent->the_post();
?>
<li><a title="<?php the_title(); ?> " href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li>
<?php endwhile; wp_reset_query(); ?>
</ul>
这个是我的一段代码,你可以参考一下!这个是某分类下的20个文章标题
<?php
$catid = get_the_category(); //通过这个函数可以获得该文章下的分类信息
$newcat_id = $catid[0]->cat_ID; //获取得到该文章下的分类ID
$recent = new WP_Query("showposts=20&cat=".$newcat_id);
while($recent->have_posts()) : $recent->the_post();
?>
<li><a title="<?php the_title(); ?> " href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li>
<?php endwhile; wp_reset_query(); ?>
</ul>
这个是我的一段代码,你可以参考一下!这个是某分类下的20个文章标题
来自:求助得到的回答
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你在改源码?
不建议这样做
不建议这样做
更多追问追答
追问
在修改模板,我的问题能实现吗
追答
改模版的话 应该是只涉及版式和样式内容就好了吧,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询