'Основная номинация', 'translations' => 'Переводы', 'unranked' => 'Вне конкурса' ); $a = shortcode_atts( array( 'category' => 'КРИЛ '.date('Y'), ), $atts ); $category = $a['category']; $retval = ''; $args = array( 'numberposts' => -1, 'post_status' => 'publish', 'post_type' => 'game', 'meta_key' => 'nomination', ); foreach ($nominations as $nomination => $name) { $i = 1; // $args['category'] = $category; $args['meta_value'] = $nomination; $the_query = new WP_Query($args); if( $the_query->have_posts() ) { while( $the_query->have_posts() ) { $the_query->the_post(); $retval .= '

'.$name.'

'; $retval .= '
'; if ($i > 1) { $retval .= '
'; } $retval .= '
'; $retval .= '
'. ''.get_the_title().'
Авторы:'. get_field('authors').'
'. '
Платформа: '.get_field('platform').'
'. '
'. '

'.get_the_post_thumbnail().'

'. '
'.get_the_content().'
'; $online = get_field('link_online'); $offline = get_field('link_offline'); if (!empty($online) || !empty($offline)) { $retval .= ''; } $retval .= '
'; $i++; } $retval .= '
'; } } return $retval; }