请问wordpress这个模板,首页调用指定ID文章,php代码怎么写

2024-12-03 14:30:58
推荐回答(1个)
回答1:

可以按下面 的代码来写:

            global $wp_query;
            $args = array(
                'post_type'     => 'post',
                'post_status'    => 'publish',
                'post__in'        => array(1,2,3,4)
                );
            $wp_query = new WP_Query( $args );
            if ( have_posts() ) :
                while ( have_posts() ) : the_post();
                    //输出数据
                endwhile;
            endif;
            wp_reset_query();

其中post__in就是要指定的文章