<div dir="ltr">Even when using a front-page.php template file, the Theme must still accommodate the use case of front page displaying blog posts.<div><br></div><div style>An easy way to account for that use case in front-page.php is to output conditionally based on get_option( 'show_on_front' ):</div>
<div style><br></div><div style>if ( 'page' == get_option( 'show_on_front' ) ) {</div><div style>    // Custom static front page content</div><div style>} else {</div><div style>    // Blog posts index, e.g. via including template/template part</div>
<div style>}</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 28, 2013 at 7:42 AM, priyanshu mittal <span dir="ltr"><<a href="mailto:priyanshu.mittal@gmail.com" target="_blank">priyanshu.mittal@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I am using front-page.php in my theme for displaying theme specific features but when i select the display latest post from reading settings .I still got the content of front-page.php file to display.,.. instead of latest blogs.. Is this the correct behavior<br>

</div>
<br>_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
<br></blockquote></div><br></div>