What difference does it make if I use index.php as HTML wireframe versus writing each main template file as a full HTML document?
Option 2 is the best option. To know why, one needs to look at the template loader. (The template hierarchy means nothing, if you do not know how it really works or come from) if ( defined(‘WP_USE_THEMES’) && WP_USE_THEMES ) : 59 $template = false; 60 if ( is_404() && $template = get_404_template() ) : … Read more