Пожалуйста, используйте ниже код.
function custom_url_redirects() {
/* in this array: old URLs=>new URLs */
$redirect_rules = array(
array('old'=>'/product-category/languages-cultures/','new'=>'/childrens-culture-books/')
);
foreach( $redirect_rules as $rule ) :
// if URL of request matches with the one from the array, then redirect
if( urldecode($_SERVER['REQUEST_URI']) == $rule['old'] ) :
wp_redirect( site_url( $rule['new'] ), 301 );
exit();
endif;
endforeach;
}
add_action('template_redirect', 'custom_url_redirects');