链接wordpress中的特色帖子缩略图

Posted

tags:

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

  1. // THIS LINKS THE THUMBNAIL TO THE POST PERMALINK
  2.  
  3. add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
  4.  
  5. function my_post_image_html( $html, $post_id, $post_image_id ) {
  6.  
  7. $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>';
  8.  
  9. return $html;
  10. }

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

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

Wordpress如何获取图形标签内的帖子缩略图

如何将图像用于博客帖子缩略图,但不让它成为帖子顶部的特色图像?

Wordpress - 特色图像元框未显示在自定义帖子类型上

如何强制WordPress Gutenberg刷新特色图片?

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