Hi Guys, i´ve tried to figure out how i can change the excisting php struktur, to get only posts from a specific category. The Code used in your theme as follow: PHP: <?php $limit = 5; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('showposts=' . $limit . '&paged=' . $paged); $wp_query->is_archive = true; $wp_query->is_home = false; get_template_part('loop', 'blog');?> Now i have to change this, to get only posts from category with ID 50. Can u tell me please, how to change the above code? Thanks
Hello, Kindly specify where you want to change structure to show blog post from specific category. Is front page or blog page..? Let me know.
Hi, i want to use this Loop in a single page. Have a look at this page: http://floopie.de/ark-survival-evolved/ at the end there is the changed Loop. It show up the special content from just a selected Category. So problem already solved. PHP: <?php $limit = 5; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('showposts=' . $limit . '&paged=' . $paged . '&cat=50'); $wp_query->is_archive = true; $wp_query->is_home = false; get_template_part('loop', 'blog');?>