Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php while (have_posts()) : the_post(); ?>
<?php query_posts('cat=номер_категории'); ?>
Надо еще добавить условие
if (is_home())
// вывод 3х статей из Категории #7
foreach(get_posts('offset=0&numberposts=1&category=7') as $post) :
setup_postdata($post);
?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<?php the_content('Читать дальше...'); ?>
<?php
endforeach;