こんにちは
症状のほう確認いたしました。
Welcart Basic の次期バージョンにて修正いたしますので、
お急ぎの場合は、お使いの Welcart Basic の
以下の箇所を修正くださいませ。
【修正テンプレート】
/themes/Welcart Basic/inc/front-customized.php
◆front-customized.php 94行目あたり
add_filter( 'post_class', 'welcart_basic_remove_hentry' );
function welcart_basic_remove_hentry( $classes ) {
global $post;
if ( 'post' != get_post_type( $post ) ) {
$idx = array_search( 'hentry', $classes );
if( $idx !== false )
unset( $classes[$idx] );
}
return $classes;
}
を下記に変更ください。
add_filter( 'post_class', 'welcart_basic_remove_hentry' );
function welcart_basic_remove_hentry( $classes ) {
$idx = array_search( 'hentry', $classes );
if( $idx !== false )
unset( $classes[$idx] );
return $classes;
}
どうぞよろしくお願いいたします。