我试图在WordPress中添加一个函数functions.php
我要在其中显示与主题文件夹相关的图像
这是我的代码,它不工作,它只显示文件名,但没有正确的路径。
add_filter (somefilter_code_here);
function mycustom_func($mycustom_field ) {
$capimg = bloginfo(\'template_url\').\'/imagename.jpg\';
echo $capimg; // for testing and it does work
$mycustom_field .= \'<p class="custom_image">\';
//$comment_field .= \'<img scr="\'. $capimg\' . \'" alt="custom_image"/>\';
$mycustom_field .= \'<img scr="\'. bloginfo(\'template_url\').\'/imagename.jpg\' . \'" alt="captcha"/>\';
$mycustom_field .= "</p>";
return $comment_field;
}
我需要一个确切的php行,它可以从路径检索图像并显示它
现在不显示图像,它只显示文件名,单独显示$capimage的值