我最近将此代码添加到我的Wordpress网站以进行添加。我的产品类别的html。它对该类别起到了很好的作用(http://mywebsite.com/parent-category/product-category.html) 但当我点击分页时,链接变成了(http://mywebsite.com/parent-category/product-category.html/page/2)
这是我添加到函数中的代码。我的网站上的php
function wpse_178112_category_permastruct_html( $taxonomy, $object_type, $args ) {
if ( $taxonomy === \'product_cat\' )
add_permastruct( $taxonomy, "{$args[\'rewrite\'][\'slug\']}/%$taxonomy%.html", $args[\'rewrite\'] );
}
add_action( \'registered_taxonomy\', \'wpse_178112_category_permastruct_html\', 10, 3 );
请帮忙,我只是个Wordpress新手。
非常感谢。