单击特色图像时如何重定向到帖子?

时间:2018-03-26 22:22:03

标签: php wordpress wordpress-theming

在我的wordpress网站的博客页面上,有些帖子有特色图片,在舔这些图片时,他们会重定向到他们的路径,我希望他们重定向到帖子链接。

如何实现?

1 个答案:

答案 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数组的元素