uishiさん nanbuさん
ありがとうございます。
nanbuさんの記述通りにしましたら無事表示できました!
「usces_the_itemImage(0, 50, 50, $post, ‘return’ ) 」<—最初これを「li」の中に入れてもまったくダメで諦めていたのですが、あれれ、順番なんですね(良かった〜)。
PHPはまったく分からないので助かりました。価格も無事表示されました。
成功例を記述しておきます。
= ▽ functions.php =======
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 = 'http://www.abc.com/img/common/rank1.gif';
} elseif ( $index == 1 ){
$img = 'http://www.abc.com/img/common/rank2.gif';
} elseif ($index == 2){
$img = 'http://www.abc.com/img/common/rank3.gif';
} else {
}
$list = '
<li><img src="' . $img . '" alt="" /><a href="' . get_permalink($post_id) . '">' . $post->post_title . '</a>¥' . usces_the_firstPrice( 'return', $post ). usces_guid_tax( 'return', $post ). usces_the_itemImage(0, 40, 40, $post, 'return' ) . '</li>
';
return $list;
}
=====================
<(_ _)>ありがとうございました<(_ _)>