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 11 Answer
Reset to default 0You 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;
}
?>