Load different template file when condition met?

If I visit a page on my WordPress site, WP goes and determines what template file it should use based on the template hierarchy.

If I’m doing some logic checking in the hook init and say my conditions are met, how do I tell WordPress to load a template file of my choosing, not the one WordPress would normally dish up?

Related posts

Leave a Reply

2 comments

  1. Can you perform the logic on the template_include filter? Else, you could set a global/constant and use that in template_include to serve up the appropriate template.

    The template_include filter filers the path to the template file to be included. To avoid errors you should check if the template exists – locate_template does this for theme/child-theme files.

    add_filter("template_include", "sc_redirect_properties_to_registration");
    function sc_redirect_properties_to_registration( $template )
    {
        if( is_user_logged_in() && ! is_page("the-properties") )
            return $template;
    
        //You could include templates from plugins
        //$template = plugin_dir_path(__FILE__).'templates/plugin-template.php';
    
        //Best to check the template exists. With **theme/child-theme** templates
        // you can do this with locate_template.
        return locate_template('template-registration.php');
    }
    
  2. I suppose you could use some conditions like this:

    if(is_front_page()){
        // Home page layout
    } elseif(is_page()){
        // General page layout
        if(is_page('contact')){
            // Page layout specific to the contact page
        } elseif(is_page('about')){
            // Page layout specific to the about page
        }
    }
    

    Then obtain parts of your template depending on the section of your website using get_template_part();