PHP 链接在wordpress中的特色邮政缩略图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 链接在wordpress中的特色邮政缩略图相关的知识,希望对你有一定的参考价值。

// THIS LINKS THE THUMBNAIL TO THE POST PERMALINK

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;
}

以上是关于PHP 链接在wordpress中的特色邮政缩略图的主要内容,如果未能解决你的问题,请参考以下文章

PHP PHP WP WordPress获取特色图片后缩略图

PHP 将特色图像缩略图添加到WordPress管理列

如何将页面中的特色图像缩略图放在 wordpress 的主索引上

wordpress插件multiple-post-thumbnails实现多缩略图教程

将特色图像缩略图添加到WordPress管理列

将特色图像缩略图添加到WordPress管理列