Va salut, ma poate ajuta cineva sa modific prima pagina ( index.php ) astfel incat sa imi afiseze doua categorii principale cu ce este nou in ele, dar si un numar de post-uri ce il pot seta sa apara in fiecare categorie ?
x noutati ( categoria x )
content
y noutati ( categoria y )
content
Codul este urmatorul:
Cod:<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="item"> <div class="background"></div> <?php $img = get_post_meta(get_the_ID(), 'img', true); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title() ?>"><img width="96" height="150" src="<?php echo $img; ?>" alt="<?php the_title() ?>" /></a> <div class="content"> <h2><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></h2> </div> </div> <?php endwhile; else: ?> <?php endif; ?>




Răspunde cu citat