这主要是关于将函数的返回值与一个(或多个)字符串串联在一起的PHP一般问题。
这个get_bloginfo 作用returns 字符串而不是echoing 这是直接的。
因此,您可以从以下内容开始:
// First param value: stylesheet_directory
// Using "template_url" also works unless you are using a child theme
// In that case, "template_url" will not return your child theme\'s directory path
$image = get_bloginfo(\'stylesheet_directory\');
如果要手动向该值添加字符串,可以通过添加点(.)来连接get\\u bloginfo()返回的值(类型为string)后跟单引号或双引号,如下所示:
$image = get_bloginfo(\'stylesheet_directory\') .\'/images/images/default.png\';