“consulta wp usando o_post” Respostas de código

consulta wp usando o_post

<?php 
    query_posts(array( 
        'post_type' => 'portfolio',
        'showposts' => 10 
    ) );  
 while (have_posts()){
 		the_post(); ?>
        <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
        <p><?php echo get_the_excerpt(); ?></p>
<?php } ?>
gtamborero

WP_QUERY POST ID

$args = array(
	'post_type' => 'my_custom_type'
	'cat' => $cat_id,
);

$wp_query = new WP_Query( $args );

$wp_query->post->ID
Lokesh003

Respostas semelhantes a “consulta wp usando o_post”

Perguntas semelhantes a “consulta wp usando o_post”

Mais respostas relacionadas para “consulta wp usando o_post” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código