Untitled
plain_text
2 months ago
359 B
1
Indexable
Never
<?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; ?>