“WordPress Dapatkan posting jenis posting khusus” 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

Dapatkan Nama Kustom Jenis Posting WordPress

$pt = get_post_type_object( 'books' );

// These two usually contain the post type name in plural. 
// They may differ though.
echo $pt->label;
echo $pt->labels->name;

// This one holds the post type name in singular.
echo $pt->labels->singular_name;
Pepiño

Jawaban yang mirip dengan “WordPress Dapatkan posting jenis posting khusus”

Pertanyaan yang mirip dengan “WordPress Dapatkan posting jenis posting khusus”

Lebih banyak jawaban terkait untuk “WordPress Dapatkan posting jenis posting khusus” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya