Только что установил Wordpress с BeTheme и Woocommerce и столкнулся со следующей проблемой: при входе на страницу отдельного продукта присутствуют кнопки Next-Prev, показывающие некоторую информацию о продукте next-prev - название, дата загрузки, изображение.Теперь я хочу добавить цену, но у меня ничего не найдено в StackOverflow.
Вот мой код, я хочу добавить цену вместо даты.
Если нужно, можете предоставить кодфайл theme-shortcodes.php.
Заранее благодарим.
if( is_object( $post ) ){
// move this DOM element with JS
$output .= '<a class="fixed-nav fixed-nav-'. $next_prev .' format-'. get_post_format( $post ) .'" href="'. get_permalink( $post ) .'">';
$output .= '<span class="arrow"><i class="'. $icon .'"></i></span>';
$output .= '<div class="photo">';
$output .= get_the_post_thumbnail( $post->ID, 'blog-navi' );
$output .= '</div>';
$output .= '<div class="desc">';
$output .= '<h6>'. get_the_title( $post ) .'</h6>';
$output .= '<span class="date"><i class="icon-clock"></i>'. get_the_date(get_option('date_format'), $post->ID) .'</span>';
$output .= '</div>';
$output .= '</a>';
}