Letting wordpress decide what template and page to use based on condition
I’m not sure this is a great way, but for now that’s what I have: Set the front page setting in WordPress to posts and not static page, so WordPress will use the index.php file. In the index.php file write: if (something) { global $post; $post = get_post( “the post id” ); setup_postdata( $post ); … Read more