インストするとウィジェットにwelcart BESTセラーがでる
サイドバーを使える様にして
指定の位置へ
<?php dynamic_sidebar('Widgets 1'); ?>
<div style="clear:both;"></div>
ベストセラーにサムネイル、順番を画像で出力したり、指定クラスをつける
ファンクションへ
//welcartベストセラー サムネイル+順位表示が画像
add_filter('usces_filter_bestseller', 'my_bestseller_func', 10, 3);
function my_bestseller_func() {
$args = func_get_args();
list($html, $post_id, $index) = $args;
$post = get_post($post_id);
if ( $index == 0 ){
$img = 'img/1.png';
} elseif ( $index == 1 ){
$img = 'img/2.png';
} elseif ($index == 2){
$img = 'img/3.png';
} else {
}
$list = '<li class="side_rank"><a href="' . get_permalink($post_id) . '"><img src="' . $img . '" width="24" style="padding-bottom:0px;" />
<br/>' . usces_the_itemImage(0, 175, 267, $post, 'return' ) . '<br>' . $post->post_title . '</a></li>
';
return $list;
}