“Kueri Jenis Posting Kustom WordPress” Kode Jawaban

WordPress Dapatkan posting jenis posting khusus

<?php 

$args = array(
    'post_type'=> 'services',
    'areas'    => 'painting',
    'order'    => 'ASC'
);              

$the_query = new WP_Query( $args );
if($the_query->have_posts() ) : 
    while ( $the_query->have_posts() ) : 
       $the_query->the_post(); 
       // content goes here
    endwhile; 
    wp_reset_postdata(); 
else: 
endif;

?>
Lucas Matheus Pena

Kueri Jenis Posting Kustom WordPress

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

Jenis posting khusus WP_QUERY

/* WordPress: Query a custom post type */

// Query all Case Study post types
<?php query_posts('post_type=case_studies'); ?>
Intra

Jawaban yang mirip dengan “Kueri Jenis Posting Kustom WordPress”

Pertanyaan yang mirip dengan “Kueri Jenis Posting Kustom WordPress”

Lebih banyak jawaban terkait untuk “Kueri Jenis Posting Kustom WordPress” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya