是否要将所有缩略图链接到各自的博客帖子?如果是,请在中使用以下代码functions.php
文件:
add_filter( \'post_thumbnail_html\', \'my_post_image_html\', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id ) {
$html = \'<a href="\' . get_permalink( $post_id ) . \'" title="\' .
esc_attr( get_post_field( \'post_title\', $post_id ) ) . \'">\' . $html . \'</a>\';
return $html;
}
如果您只想让帖子缩略图链接到特定循环中的帖子永久链接,请在类似前面提到的Jamal的查询中使用以下代码:
if ( has_post_thumbnail() ) :
?><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" ><?php
the_post_thumbnail();
?></a><?php
endif;
循环位于
index.php
页看看WordPress Codex关于
The Loop 您可以根据您的主题看到代码片段应该落在哪里。