“WordPress Uzyskaj niestandardowe posty typu postu” Kod odpowiedzi

WordPress Uzyskaj niestandardowe posty typu postu

<?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

Uzyskaj nazwę niestandardowe posty 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

Odpowiedzi podobne do “WordPress Uzyskaj niestandardowe posty typu postu”

Pytania podobne do “WordPress Uzyskaj niestandardowe posty typu postu”

Więcej pokrewnych odpowiedzi na “WordPress Uzyskaj niestandardowe posty typu postu” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu