PostsQuery = new \WP_Query($args); if ($this->PostsQuery->have_posts()) { $this->Render(); \wp_reset_postdata(); } } public function Render() { echo '
'; echo '
'; echo '
'; while ($this->PostsQuery->have_posts()) { $this->PostsQuery->the_post(); get_template_part('template-parts/content', '', array('is_posts_shortcode' => true)); } echo '
'; echo '
'; echo '
'; } }