add_action( 'init', 'create_post_type__team' );
function create_post_type__team() {
register_post_type( 'team',
array(
'labels' => array(
'name' => __( 'Team' ),
'singular_name' => __( 'Team hero' )
),
'public' => true,
'has_archive' => false,
'menu_icon' => 'dashicons-businessman',
'supports' => array('title', 'thumbnail')
)
);
}
<?foreach($arResult["ITEMS"] as $arItem):?>
<? if (empty($arItem['PROPERTIES']['SALE_END']['VALUE'])) :?>
Выводим без акции
<? endif;?>
<?endforeach;?>
<?foreach($arResult["ITEMS"] as $arItem):?>
<? if (!empty($arItem['PROPERTIES']['SALE_END']['VALUE'])) :?>
Выводим с акцией
<? endif;?>
<?endforeach;?>