在我的wordpress网站的博客页面上,有些帖子有特色图片,在舔这些图片时,他们会重定向到他们的路径,我希望他们重定向到帖子链接。
如何实现?
答案 0 :(得分:0)
在wordpress" have_posts()"在" the_post();"之后循环(主题中的index.php):
href="<?php the_permalink(); ?>"
在自定义循环中:
href="<?php echo esc_url(get_permalink($single_post->ID)); ?>"
其中$ single_post是posts数组的元素