链接wordpress中的特色帖子缩略图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链接wordpress中的特色帖子缩略图相关的知识,希望对你有一定的参考价值。
// THIS LINKS THE THUMBNAIL TO THE POST PERMALINK 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; }
以上是关于链接wordpress中的特色帖子缩略图的主要内容,如果未能解决你的问题,请参考以下文章
如何将图像用于博客帖子缩略图,但不让它成为帖子顶部的特色图像?
Wordpress - 特色图像元框未显示在自定义帖子类型上