方法一:代码最简单的方法 在需要显示的地方直接调用如下代码(张自然现在就用这种方法,经张自然修改后,兼容inove系列主题 - <li class="widget widget_numberposts">% F# ]- f) n8 ]5 Z$ q; c
- <h3>随遍看看吧</h3>1 W/ [# D9 j+ V3 T$ n y6 V
- <ul>$ F) N7 d, P! i5 c6 M
- <?php $rand_posts = get_posts('numberposts=8&orderby=rand');1 E2 s" l. R! ?/ j( l9 e
- foreach( $rand_posts as $post ) : ?>
6 S" P) S: |6 w" w& S% b0 ?( e - <li> U% E, l) d$ E- \! N
- <a target="_blank" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>7 Y& `. c1 A* g, W6 H
- </li>
' v3 m, k& I9 Q0 c5 Y - <?php endforeach; ?>, U9 q( s y7 {
- </ul>
复制代码这个方法虽然简单,但用到了get_posts,如果将代码放在子页模板里,在他之后的代码,比如如果在后面同时调用了当前文章的评论,那评论内容很可能,出现的是最后一个随机到的文章的评论,而非当前文章的评论。 9 I( D' f0 ^( e7 Y/ J: f( ?
方法二:在随机文章中显示标题和文章摘要在需要显示的地方直接调用如下代码
- h: l/ x2 b8 }) j) Y8 o6 c- <?php
. g6 L( g; r W7 n* B! e0 ?, n - query_posts(array(‘orderby’ => ‘rand’, ‘showposts’ => 1));% s/ C* O9 B; g) e# a0 k R( |
- if (have_posts()) :
2 G; ?& p; a2 t - while (have_posts()) : the_post();
S/ r% `. @5 T) Q1 i0 J' v - the_title(); //这行去掉就不显示标题. T, {6 | ?: x- q; M2 x0 j0 n
- the_excerpt(); //去掉这个就不显示摘要了
9 w$ C9 x8 ?) O' ^. A# x - endwhile;9 W- ^4 A) Y u- s- G2 D
- endif; ?>
复制代码 方法三:用query_posts生成随机文章列表在需要显示的地方直接调用如下代码 - <?php
% X- d( X) W1 M1 ] - query_posts(array(‘orderby’ => ‘rand’, ‘showposts’ => 2));: G! H1 R3 Z5 I- D
- if (have_posts()) :
# m @9 b' C+ n+ L3 R% v. G4 g0 l - while (have_posts()) : the_post();?>
+ h( l& Z' n$ v) u5 x - <a href=”<?php the_permalink() ?>”
( ^# }) \. B, s) _) m0 Y2 T0 _4 ~$ [ - rel=”bookmark”
0 a) }& g9 ^: e( r: n) t- Q6 Z - title=<?php the_title(); ?>”><?php the_title(); ?></a> # |6 g! x }) o
- <?php comments_number(”, ‘(1)’, ‘(%)’); ?># F( Z3 f! [, D
- <?php endwhile;endif; ?>
复制代码 方法四:在function.php中加入如下代码在function.php中加入如下代码 - /**$ p/ i3 S; w1 P. f% \4 C
- * 随机文章# e/ Z0 H; J* d6 ^: ?7 K! m" S$ ]
- */
) A$ ?; y/ T% F+ _ - function random_posts($posts_num=5,$before='<li>',$after='</li>'){, Q0 a) a4 [- ?7 e# L* i
- global $wpdb;- J7 U" ^5 @" I# q% y; {& \. k
- $sql = "SELECT ID, post_title,guid
9 u0 V9 f8 T# L' B. u - FROM $wpdb->posts% x. ^8 y1 K* o, S3 V
- WHERE post_status = 'publish' ";
[! `* e; {4 |# \; n9 M - $sql .= "AND post_title != '' ";
7 M+ d9 v& \0 n P Y - $sql .= "AND post_password ='' ";
6 [! x U R% g7 R4 G1 S - $sql .= "AND post_type = 'post' ";
8 F$ D- f( ?3 m Y" L - $sql .= "ORDER BY RAND() LIMIT 0 , $posts_num ";
8 j5 G: z( H/ K" @" S9 p" J, D) D3 v - $randposts = $wpdb->get_results($sql);$ P! A1 _7 q/ ^
- $output = '';
- n' p) B1 L& ^! U2 N+ |9 c3 w - foreach ($randposts as $randpost) {* n8 D5 M% }, I& M. U V
- $post_title = stripslashes($randpost->post_title);9 @/ r! e3 K' Z9 A
- $permalink = get_permalink($randpost->ID);
3 ~) K3 l3 h l( k2 R$ @: z: y$ Y - $output .= $before.'<a href="'+ G0 a; c; l7 n( e# W" _
- . $permalink . '" rel="bookmark" title="';
4 ?" x0 G+ w T - $output .= $post_title . '">' . $post_title . '</a>';) d% N0 p8 ?* i+ s+ w' [$ u
- $output .= $after;
M3 k: z3 q8 d; W - }
; D' f) |- x+ a7 C4 i9 F* c - echo $output;# L3 `! r! h7 \
- }
+ s9 K% R" I9 `* [0 N# V - 在需要显示的地方调用如下代码6 a+ x% C, d9 A7 b [. ]* ^3 ]
- <div>
5 a# ~# ?9 N6 H - <h3>随便找点看看!</h3>* {4 d8 F- t8 Z- s0 T
- <ul>8 Q. i, d, }6 o- b# l) c
- <?php random_posts(); ?>" x0 E7 a3 ~: T6 n$ d5 C0 h
- </ul>- v( l, S( p8 h O% Y" G J
- </div><!-- 随机文章 -->
复制代码
+ G: q- a6 {# g8 Z2 P/ H+ O
9 }" x, \3 P. n3 y5 `( z& U
. X0 z' M. f& k$ [* Z- X4 C |