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

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

#62766
nanbu
キーマスター

この様にしてください。

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;
}