こんにちは。
ベストセラーウィジェットにアイコン(gold.png)を表示させています。そこでURLの部分をthemeフォルダまでのパスを取る関数bloginfo('template_directory')
で置き換えようと思ったのですが何度やってもうまく表示されないようです。
ただ単に書き方が間違っているのかもしれませんが、アドバイス頂けないでしょうか?
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 = bloginfo('template_directory').'images/gold.png';
} elseif ( $index == 1 ){
$img = bloginfo('template_directory').'images/silver.png';
} elseif ($index == 2){
$img = bloginfo('template_directory').'images/bronze.png';
} else {
}
$list = usces_the_itemImage(0, 40, 40, $post, 'return' ) . '<img src="' . $img . '" />
<li>第' . ($index+1) . '位<a href="' . get_permalink($post_id) . '">' . $post->post_title . '</a></li>
';
return $list;
}
このように記述してみましたが、コードがそのまま出力されてしまいました。