Untitled
unknown
plain_text
2 years ago
359 B
5
Indexable
<?php $args = array( 'post_type' => 'szkolenie', 'orderby' => 'menu_order', 'order' => 'ASC' ); $custom_query = new WP_Query( $args ); while ($custom_query->have_posts()) : $custom_query->the_post(); get_template_part( 'szkolenie-item', get_post_format() ); endwhile; ?>
Editor is loading...