add_action( 'template_redirect', function() {
if ( preg_match( '#^/odejda/?$#i', $_SERVER['REQUEST_URI'] ) ) {
wp_redirect( '/odejda/all-odejda/', 301 );
exit;
}
} );
add_action( 'template_redirect', function() {
if ( preg_match( '#^/category_link/?$#i', $_SERVER['REQUEST_URI'] ) ) {
wp_redirect( '/category_link/all-category_link/', 301 );
exit;
}
} );