wordpress 获取文章插入的图片

所有的函数都写在主题下面的functions.php文件夹里

1、wordpress 获取文章插入的第一张图片

/i', $post->post_content, $matches); 

		$first_img = $matches [1] [0]; 

	if(empty($first_img)){  

		$first_img = '';//bloginfo('template_url'). '/images/default-thumb.jpg';  
	 
	}
	else{
		$first_img = ' ';
	} 

	return $first_img;   

}

调用

<?php the_title(); ?>


wordpress 获取文章插入的所有图片

function all_img($soContent){
	$soImages = '~]*\ />~';
	preg_match_all( $soImages, $soContent, $thePics );
	$allPics = count($thePics);
	if( $allPics > 0 ){
		foreach($thePics[0] as $v){
			echo $v;
		}
	}else {
		echo "";
	}
}

调用

post_content);?>


你可能感兴趣的:(wordpress)