Most themes are designed to show all of your recent posts in your front (posts) page.
Thread Starter
arxain
(@arxain)
Thx i have founded into the codes.
My solution was create a tag and after this:
<?php
//The Query
query_posts(‘tag=Top-Hosting’);
//The Loop i deleted this
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
If someone have the same problem must take care when keep the tag, because you write Top Hosting, for example and the name of the tag is kept like Top-Hosting like in my case, it could bring you a confution at the time you write the tag condition (query_posts(‘tag=Top-Hosting’);).
To make this i went to editor and choose the index.php page.
Thanks,
Arxa.