<HTML><HEAD></HEAD>
<BODY dir=ltr>
<DIV dir=ltr>
<DIV style="FONT-FAMILY: 'Calibri'; COLOR: #000000; FONT-SIZE: 12pt">
<DIV>it’s a template that themes have that do the blog loop that can be 
associated to a page, either custom for specific categories are all</DIV>
<DIV> </DIV>
<DIV 
style="FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; COLOR: #000000; FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: none">
<DIV style="FONT: 10pt tahoma">
<DIV><FONT size=3 face=Calibri>“there’s no way to display it using any other 
template file”</FONT></DIV>
<DIV><FONT size=3 face=Calibri></FONT> </DIV>
<DIV><FONT size=3 face=Calibri>This is what I use, works fine:</FONT></DIV>
<DIV><FONT size=3 face=Calibri></FONT> </DIV>
<DIV><?php</DIV>
<DIV>/*</DIV>
<DIV>Template Name: Blog</DIV>
<DIV>*/</DIV>
<DIV>get_header();</DIV>
<DIV> </DIV>
<DIV>$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;</DIV>
<DIV> </DIV>
<DIV>$blog_query = array(</DIV>
<DIV>        'paged' => $paged,</DIV>
<DIV>        'post_type' => 'post',</DIV>
<DIV>        'in_the_loop' => true,</DIV>
<DIV>        'posts_per_page' => 
comicpress_themeinfo('home_post_count')</DIV>
<DIV>        );</DIV>
<DIV>        </DIV>
<DIV>$wp_query = new WP_Query(); $wp_query->query($blog_query);</DIV>
<DIV>if (have_posts()) {</DIV>
<DIV>    while (have_posts()) : the_post();</DIV>
<DIV>        $withcomment = 0;</DIV>
<DIV>        get_template_part('content', 
get_post_format());</DIV>
<DIV>    endwhile;</DIV>
<DIV>    comicpress_pagination();</DIV>
<DIV>}</DIV>
<DIV> </DIV>
<DIV>wp_reset_query();</DIV>
<DIV> </DIV>
<DIV>get_footer();</DIV>
<DIV> </DIV>
<DIV><FONT size=3 face=Calibri></FONT> </DIV>
<DIV style="BACKGROUND: #f5f5f5">
<DIV style="font-color: black"><B>From:</B> <A title=otto@ottodestruct.com 
href="mailto:otto@ottodestruct.com">Otto</A> </DIV>
<DIV><B>Sent:</B> Saturday, July 05, 2014 11:00 AM</DIV>
<DIV><B>To:</B> <A title=theme-reviewers@lists.wordpress.org 
href="mailto:theme-reviewers@lists.wordpress.org">Discussion list for WordPress 
theme reviewers.</A> </DIV>
<DIV><B>Subject:</B> Re: [theme-reviewers] Is Blog.php is allowed in 
theme?</DIV></DIV></DIV>
<DIV> </DIV></DIV>
<DIV 
style="FONT-STYLE: normal; DISPLAY: inline; FONT-FAMILY: 'Calibri'; COLOR: #000000; FONT-SIZE: small; FONT-WEIGHT: normal; TEXT-DECORATION: none">
<DIV dir=ltr>
<DIV class=gmail_extra>
<DIV class=gmail_quote>On Sat, Jul 5, 2014 at 12:48 PM, Philip M. Hofer (Frumph) 
<SPAN dir=ltr><<A href="mailto:philip@frumph.net" 
target=_blank>philip@frumph.net</A>></SPAN> wrote:<BR>
<BLOCKQUOTE 
style="BORDER-LEFT: rgb(204,204,204) 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" 
class=gmail_quote>
  <DIV dir=ltr>
  <DIV dir=ltr>
  <DIV style="FONT-FAMILY: calibri; COLOR: rgb(0,0,0); FONT-SIZE: 12pt">
  <DIV>The blog template is the point I was making in the first place, where if 
  you do *not* want the is_home or is_front_page events to execute, that is the 
  only way to bypass that; which makes having a blog.php useful.</DIV>
  <DIV> </DIV></DIV></DIV></DIV></BLOCKQUOTE>
<DIV> </DIV>No, I mean, there is nothing in the code that I can find for 
"blog.php" at all. It's not mentioned in the Template Hierarchy, there's nothing 
in the template.php core file that mentions it. So, what exactly is this 
"blog.php" to which you refer? 
<DIV> </DIV>
<DIV>As far as I know, if you're displaying the results of the main posts query, 
then you're doing it on front-page.php, home.php, or index.php. There's no way 
to display it using any other template file.</DIV>
<DIV class=gmail_extra>
<DIV> </DIV>
<DIV>-Otto</DIV></DIV>
<DIV> </DIV></DIV></DIV></DIV>
<P>
<HR>
_______________________________________________<BR>theme-reviewers mailing 
list<BR>theme-reviewers@lists.wordpress.org<BR>http://lists.wordpress.org/mailman/listinfo/theme-reviewers<BR></DIV></DIV></DIV></BODY></HTML>