📌  相关文章
📜  显示自定义帖子类型 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:48.246000             🧑  作者: Mango

代码示例1
$args = array(  
        'post_status' => 'publish',
        'posts_per_page' => 5,  
        
        );
    
    $loop = new WP_Query( $args ); 
        
    while ( $loop->have_posts() ) : $loop->the_post(); 
        the_title(); 
    the_excerpt();
    endwhile;