Best Way to Redirect Category to Page and Hide Category

I don’t know for some reason, the add_filter caused error. I used the following one:

function my_page_template_redirect()
{
    if ( is_category( 'news-articles' ) ) {
        $url = site_url( '/news' );
        wp_safe_redirect( $url, 301 );
        exit();
    }
}
add_action( 'template_redirect', 'my_page_template_redirect' );

Leave a Comment