4.自動獲取文章圖像0 M0 Y8 V. E3 o4 l: M# o
5 ~4 k4 n5 Z, K. H- a問題:使用自定義字段來顯示和日誌相關的圖像固然很好,但是許多用戶想直接檢索並使用文章本身嵌入的圖像。% b. j& @& N5 q1 l0 }
$ p8 A2 m" g) b1 a. i5 ]( B- C解決方案: 至今為止,還沒有這樣的插件。值得慶幸的是,以下循環將幫我們解決這一問題:它會搜索文章內容的圖像並把它們顯示出來
1 F3 J( \, M/ u把以下代碼粘貼到主題文件任意位置:
6 I- Z, L% B, v4 l, X: a7 z# f<?php if (have_posts()) : ?>
9 g. e/ n6 I' ~* ^: k- X3 F<?php while (have_posts()) : the_post(); ?>4 j/ P B1 C F- G
<?php9 B, [/ p( r# V, D x- I
$szPostContent = $post->post_content;$ C2 X* c! o+ J! d# D9 T
$szSearchPattern = '~<img [^\>]*\ />~';" V) t" T H8 W% M( E
// Run preg_match_all to grab all the images and save the results in $aPics
2 }9 e5 R9 Q3 S: w5 T. Epreg_match_all( $szSearchPattern, $szPostContent, $aPics );9 H& X2 d6 y3 k, m+ {
// Check to see if we have at least 1 image
+ a Y4 I7 Y! L" J7 i$iNumberOfPics = count($aPics[0]);
2 s) w: U: s; ~if ( $iNumberOfPics > 0 ) {$ y5 R; k/ t4 M6 o
// Now here you would do whatever you need to do with the images
8 p7 t$ [* N: x5 m5 B- b// For this example the images are just displayed
. [! a* _: B7 @. h7 x! C4 ifor ( $i=0; $i < $iNumberOfPics ; $i++ ) {% a: l) Z A( k" a% ?) C
echo $aPics[0][$i];
5 n! F: m7 h6 s z7 z5 G: }};6 Q |6 b, x' T1 E+ t. D
};" W: B- i+ T. E( t) [
endwhile;
4 X; ?2 ^+ N( L" gendif;
% T4 I" d6 i- i! p( [?>3 v1 E- B* z* I" }. n& o
! G" U2 w) r( {' ~2 Y3 l4 n, m
代碼說明:以上代碼實際上包含了一個WordPress循環。使用PHP和正則表達式的唯一區別就是前者會自動搜索文章內容中的圖像而不是僅僅顯示文章。一旦發現圖像,系統就會顯示。 |
|