【发布时间】:2021-11-20 16:22:57
【问题描述】:
目前,当我从 WordPress 的自定义菜单中选择一个项目时,当我希望能够将 URL 更改为 domain.com/shop/category 时,它会将我带到 domain.com/category
链接设置在这里:
<h5 class="game-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
我想在这里将the_permalink() 重定向到the_shoplink() 之类的内容,然后重定向到商店网址,而不是永久链接网址。
由于主题自定义帖子类型,我无法将菜单更改为商店页面,因此我希望将帖子重定向到 the_shoplink()
【问题讨论】:
标签: php wordpress url woocommerce shortcode