<div dir="ltr">The easiest route is to add conditional output in front-page.php:<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>if ( 'page' == get_option( 'show_on_front' ) ) {</div>
<div>    // Original front-page output here</div><div>} else {</div><div>    // Normal loop output here</div><div>    // You can get_template_part( 'loop' ) if you use loop.php,</div><div>    // or, you could use get_home_template()</div>
<div>}</div></blockquote><div><br></div><div>Alternately, you could rename your featured-content template file as template-featured.php, and give it a proper custom page template "Template Name:" header, then do something like:</div>
<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>if ( 'page' == get_option( 'show_on_front' ) ) {</div></div><div><div><span class="" style="white-space:pre">    </span>include( get_page_template() );</div>
</div><div><div>} else {</div></div><div><div><span class="" style="white-space:pre">       </span>include( get_home_template() );</div></div><div><div>}</div></div></blockquote><div><br></div><div>Then, the user would just have to assign that page template to the page assigned to display the site front page.</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 18, 2013 at 6:37 AM, <a href="mailto:nan@designpromote.co.uk">nan@designpromote.co.uk</a> <span dir="ltr"><<a href="mailto:nan@designpromote.co.uk" target="_blank">nan@designpromote.co.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="font-size:10pt;font-family:Verdana,Arial,Helvetica,sans-serif">Hi<br><br>Ticket: #13151 <a href="http://themes.trac.wordpress.org/ticket/13151" target="_blank">http://themes.trac.wordpress.org/ticket/13151</a><br>
Recommendation: It seems that the front-page.php is designed to be the default home page
 and not as a template. If that is the case then it should must 
facilitate the showing of the blog feed if the user selects "Front page 
displays Your latest posts". If its meant to be a selectable template to
 be used in conjunction with the setting: "Front page displays A static 
page" then it should be renamed to something other than front-page.php
<br><br>First, thanks for ZGani's review and time. <br><br>My theme as above is not approved and I am making changes in line with ZGani's feedback. <br><br>My theme use pages mainly as it aims to the restaurant business as name suggested. I use front-page.php as the home page (loading page or template). I can do one of changes as following:<br>
1. Change name simply<br>2. or in functions.php, created a loading page, set it as the front page<br><br>Please help to confirm which way I should choose <br>or any other better solutions please?<br><br>Regards,<br><br>Nan<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>