我希望返回一个模板网址而不是打印它和bloginfo('template_url'); 打印...任何人都知道这个函数的一个版本我可以在我正在构建的字符串中使用,以便在以后点打印?
实施例
$html = '<td style="width:40px;"><img src="';
$html .= bloginfo('template_url'); // <-- messes up string because it prints.
$html .= '/images/pause.png"></td>';
return $html;
答案 0 :(得分:8)
我建议你改用get_template_directory_uri()
。
$html = '<td style="width:40px;"><img src="';
$html .= get_template_directory_uri();
$html .= '/images/pause.png"></td>';
return $html;
在此处详细了解该方法:Function Reference/get template directory uri, Wordpress Codex
答案 1 :(得分:4)