Skip to content

Instantly share code, notes, and snippets.

View Srubens's full-sized avatar

Filipe Srubens

View GitHub Profile
@RafaelFunchal
RafaelFunchal / WP_Query()
Last active January 5, 2019 15:13
Como exibir apens posts de uma determinada categoria na sua página WordPress
<?php
// Documentação completa em http://codex.wordpress.org/Class_Reference/WP_Query
$args = array(
'cat' => 1, //ID da sua categoria
'posts_per_page ' => 4, // Número de posts a exibir
);
$novo_loop = new WP_Query( $args );
if ( $novo_loop->have_posts() ) : while ( $novo_loop->have_posts() ) : $novo_loop->the_post();