“WP Consuly usando The_Post” Código de respuesta

WP Consuly usando The_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

ID de publicación WP_Query

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

$wp_query = new WP_Query( $args );

$wp_query->post->ID
Lokesh003

Respuestas similares a “WP Consuly usando The_Post”

Preguntas similares a “WP Consuly usando The_Post”

Más respuestas relacionadas con “WP Consuly usando The_Post” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código