wordpress如何获取当前文章的id,要求写一个函数在function里面调用
通过分类id拿到文章id,然后通过文章的id来拿到文章的内容并且显示输出的字数思路是这样求大神...
通过分类id拿到文章id,然后通过文章的id来拿到文章的内容并且显示输出的字数
思路是这样求大神 展开
思路是这样求大神 展开
展开全部
<?php
//The args
$args = array(
'cat' => 61 //这是分类ID,也可以用array给一组ID
);
// The Result
$naruco= new WP_Query( $args );
if ( $naruco-> have_posts() ) {
// The Loop
while ( $naruco-> have_posts() ) : $naruco->the_post();
echo '<li>';
$post_ID = get_the_ID(); //这就是文章的ID了。
$post_content = get_the_content(); //文章内容,至于怎么截取一定长度的字数,百度一下到处都是啦。
echo '</li>';
endwhile;
}else {
echo 'no posts in current category!';
}
?>
说的全在注释里了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询