79835490

Date: 2025-12-02 04:59:21
Score: 1
Natty:
Report link

Using the template_redirect action hook, you can load a desired template.

add_action( 'template_redirect', function(){
    global $post;
    if( $post->ID == 'page123' ){
        wp_redirect( '/your-slug-here-or-php-file' ); die();
    }
} );
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Brandon Nater