Dum ce am verifict pe net exact care sunt codurile (am cauta ceva) o sa va spun cum am facut sa exclud o anumita categorie in wordpress din cele mai recente articole. Iata codul folosit de mine pentru a afisa cele mai recente articole minus categoria din dreapta tutoriale.
‘posts_per_page’ => 5,
‘ignore_sticky_posts’ => true,
‘cat’ => –863
)); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<h3><a href=„<?php the_permalink() ?>”><?php the_title(); ?></a></h3>
<div class=„data”><?php the_time(‘d.m.Y’, ‘blog’); ?> | <?php _e(‘In’, ‘blog’); ?> <?php the_category(‘, ‘); ?> | <?php comments_popup_link(‘0 comentarii »’, ‘1 comentariu »’, ‘% comentarii »’); ?></div>
<div class=„blog-content”>
<li><?php the_excerpt(); ?></li>
</div>
<?php endwhile;?>
12345678910111213
<?php $the_query = new WP_Query( array( ‘post_type’ => ‘post’,����������������������������������������‘posts_per_page’ => 5,����������������������������������������‘ignore_sticky_posts’ => true,����������������������������������������‘cat’ => –863�������������������������������������� )); ?><?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?><h3><a href=„<?php the_permalink() ?>”><?php the_title(); ?></a></h3><div class=„data”><?php the_time(‘d.m.Y’, ‘blog’); ?> | <?php _e(‘In’, ‘blog’); ?> <?php the_category(‘, ‘); ?> | <?php comments_popup_link(‘0 comentarii »’, ‘1 comentariu »’, ‘% comentarii »’); ?></div>�<div class=„blog-content”><li><?php the_excerpt(); ?></li></div><?php endwhile;?>
Cateva explicatii despre cod.
Categoria care trebuie exclusa in cazul meu are id-ul 863 asa cum se poate observa in cod am ‘cat’ => -863 care trebuie inlocuit cu id_ul categoriei respective. Daca se doreste excluderea a mai multor categorii se foloseste ’cat’ => array(id, id, id) )
Pentru alte detalii aveti casuta de comentarii.