在我的wordpress网站博客页面上, 一些帖子具有特色图片, 在舔这些图片时, 它们重定向到其路径, 我希望它们重定向到该帖子链接。
如何实现呢?
#1
在wordpress中的” the_post();”之后循环(主题中的index.php):
href="<?php the_permalink(); ?>"
在自定义循环中:
href="<?php echo esc_url(get_permalink($single_post->ID)); ?>"
其中$ single_post是posts数组的元素
评论前必须登录!
注册