最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

permalinks - Make query parameter an endpoint

programmeradmin2浏览0评论

i want to add custom part at the end of permalink

like this


i want


redirect to


thanks for all

i want to add custom part at the end of permalink

like this

https://example/product/product-name/order

i want

https://example/product/product-name?order=1

redirect to

https://example/product/product-name/order

thanks for all

Share Improve this question edited Jul 2, 2019 at 5:44 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Jul 2, 2019 at 4:06 Dev Ahmed HassanDev Ahmed Hassan 1
Add a comment  | 

1 Answer 1

Reset to default 0

You need to put this code into your product single page before get_header() function start.

<?php
global $wp;
if( isset($_SERVER['QUERY_STRING']) && isset($_GET['order']) ){
    $url = home_url( $wp->request . '/order/' );
    wp_safe_redirect( $url );
    exit;
}
?>
发布评论

评论列表(0)

  1. 暂无评论