Re: [解決済み] Slide Showcaseについて

フォーラム 拡張プラグイン [解決済み] Slide Showcaseについて Re: [解決済み] Slide Showcaseについて

#62761
nanbu
キーマスター

前にもお話いたしましたが、残念ながら、「Slide Showcase」は1行(1ライン)表示しかできません。スタイルシートで2段にしているのが原因かと思います。

Slide Showcase には、slide_showcase_filter_list というフックが有ります。後はItem List Layout の時と同じ要領です。

add_filter('slide_showcase_filter_list', 'my_showcase_filter_list', 10, 2);
function my_showcase_filter_list($html, $post){

$list = '<li><a href="' . get_permalink($post->ID) . '">' . usces_the_itemImage($number = 0, $width = 130, $height = 130, $post, 'return' ) . '<div class="thumtitle">' . esc_html(usces_the_itemName('return')) . '</div></a><div class="price">' . __('$', 'usces') . number_format(usces_the_firstPrice('return')) . $usces->getGuidTax() . '</div></li>' . "n";

return $list;
}