Hello, I can understand your problem. But instead of editing front page there is no another way to do this. Unless you develop your option penal. Thanks & Regards Nitesh Raghuwanshi
ok. Thanks for your reply. Is there any option for my to select which blog post to be appeared on home page without replace by latest blog post?
Hello, Go to front-page.php present in your theme directory and replace the current code Code: <?php $count = 0; if (have_posts()) : while (have_posts()) : the_post(); $count++; ?> with code given below Code: <?php $args = array( 'category_name'=>'ENTER YOUR CATEGORY NAME HERE' ); $query = new WP_Query($args); ?> <?php $count = 0; if (have_posts()) : while ($query->have_posts()) : $query->the_post(); $count++; ?> Check image for reference Add your any particular category name in the code those posts you want to show on the homepage. Thanks & Regards Gourav Shrivastava
HI Piyush, I have using your method to make my home page on : http://www.liquorstoremalaysia.com/ However, what coding should I put in to allow home page article to have some paragraphs?