Posted inWordpress交流 网站建设 wordpress调用文章列表和评论 Posted by By 小默 2019年4月10日No Comments 一:评论: < ?php $comments = get_comments(array( 'post_id' => XXX, ‘status’ => ‘approve’ )); wp_list_comments(array( ‘per_page’ => 10, ‘reverse_top_level’ => false ), $comments); ?> 二:调用文章列表 < ?php query_posts('showposts=10&orderby=new'); //showposts=10表示10篇 while(have_posts()): the_post(); ?> //这里可以写成你自己需要的样式 Share via: Facebook X (Twitter) LinkedIn More 小默 View All Posts Post navigation Previous Post SEO 企业营销Next PostWordPress各种标签调用集合