点击特色图片后如何重定向到帖子()

在我的wordpress网站博客页面上, 一些帖子具有特色图片, 在舔这些图片时, 它们重定向到其路径, 我希望它们重定向到该帖子链接。
如何实现呢?
#1在wordpress中的” the_post(); ” 之后循环(主题中的index.php):

href="http://www.srcmini.com/< ?php the_permalink(); ?>"

在自定义循环中:
href="http://www.srcmini.com/< ?php echo esc_url(get_permalink($single_post-> ID)); ?>"

【点击特色图片后如何重定向到帖子()】其中$ single_post是posts数组的元素

    推荐阅读