如果它们是特色图片或后期缩略图,则可以在函数中添加此代码。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;
}
如果您需要添加主题支持,请参阅此链接
http://codex.wordpress.org/Function_Reference/the_post_thumbnail
或者,如果你不想添加此代码,只需查找如下文件
环php,内容。php,-主。php,索引。php,主页。php
然后在文件中按F3并搜索
the_post_thumbnail
并永久链接该代码
如果你没有发现,那么你可能会使用tbe\\U内容