只要在模板页加上如下,就可以.如果不要class,可以去掉.
1 2 3 4 5 6 |
<?php the_post_thumbnail('thumbnail',array( 'alt' => trim(strip_tags( $post->post_title )), 'title'=> trim(strip_tags( $post->post_title )), ‘class’ =>‘thumb’ ) ); ?> |
只要在模板页加上如下,就可以.如果不要class,可以去掉.
1 2 3 4 5 6 |
<?php the_post_thumbnail('thumbnail',array( 'alt' => trim(strip_tags( $post->post_title )), 'title'=> trim(strip_tags( $post->post_title )), ‘class’ =>‘thumb’ ) ); ?> |