你能帮我吗我的网站添加了名称为“新内容”的页面然后添加此代码
[recent_products category = "bundles, graphic" columns = "3" orderby = "date" order = "DESC" operator = "NOT IN" paginate = true per_page = 18]
并且效果很好,所以发生的是问题所在,基本页面链接
mysite.com/whats-new /
但是当我转到第2页时,链接变成这样
mysite.com/whats-new/?product-page=2
如何建立这样的直接链接
mysite.com/whats-new/page/2
非常感谢
在您的WordPress管理员永久链接设置中,将“通用设置”设置为“帖子名称”。
您是否在主题中声明了Woocommerce支持?
function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );