12345678910111213141516171819202122232425262728//缩略图180702 //输出缩略图地址 function post_thumbnail_src(){ global $post; if( $values = get_post_custom_values("thumb") ) { //输出自定义域图片地址 $values = get_post_custom_values("thumb"); $post_thumbnail_src = $values [0]; } elseif( has_post_thumbnail() ){ //如果有特色缩略图,则输出缩略图地址 $thumbnail_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),'full'); $post_thumbnail_src […]
(more...)
记录WordPress获取第一张图作为缩略图。 首先如果有设置缩略图,则从设置中获取缩略图,没有的话,就从文章中获取第一张图片作为缩略图。 将其添加到functions.php或制作功能插件: 12345678910111213function catch_that_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+?src=[\'"]([^\'"]+)[\'"].*?>/i', $post->post_content, $matches); $first_img = $matches[1][0]; if(empty($first_img)) { $first_img = "/path/to/default.png"; } return $first_img; } 前端循环输出代码 123456789101112131415if ( get_the_post_thumbnail($post_id) != '' ) { echo '<a […]
(more...)