플러그인 없이 WordPress에서 최신 인기 기사를 무작위로 호출하는 방법은 무엇입니까?
플러그인이 없는 WordPress는 최신의 인기 있는 임의 기사 예제 코드를 호출합니다
권장: "wordpress tutorial"
플러그인이 없는 WordPress는 최신의 인기 있는 임의 기사, 특정 구현 코드를 호출합니다. 관심 있는 친구들은 다음과 같습니다. 참고로 뉴스를 호출하는 모든 분들께 도움이 되기를 바랍니다
최신 기사 호출:
코드는 다음과 같습니다:
<ul> <?php $post_query = new WP_Query(‘showposts=10′); while ($post_query->have_posts()) : $post_query->the_post(); $do_not_duplicate = $post->ID; ?> <li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li> <?php endwhile;?> </ul>
인기 기사 호출:
코드는 다음과 같습니다.
<ul> <?php $post_num = 10; // 设置调用条数 $args = array( ‘post_password’ => ”, ‘post_status’ => ‘publish’, // 只选公开的文章. ‘post__not_in’ => array($post->ID),//排除当前文章 ‘caller_get_posts’ => 1, // 排除置顶文章. ‘orderby’ => ‘comment_count’, // 依评论数排序. ‘posts_per_page’ => $post_num ); $query_posts = new WP_Query(); $query_posts->query($args); while( $query_posts->have_posts() ) { $query_posts->the_post(); ?> <li><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li> <?php } wp_reset_query();?> </ul>
임의의 기사 호출:
코드는 다음과 같습니다.
<ul> <?php global $post; $postid = $post->ID; $args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); $query_posts = new WP_Query(); $query_posts->query($args); ?> <?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?> <li><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
위 내용은 플러그인 없이 WordPress에서 최신, 인기 및 무작위 기사를 호출하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!