PHP WordPress 引用问题
遇到报价问题,需要第二双眼睛!
echo "<img src='" . bloginfo('template_url') . "img/" . $f['mainImage'] . ".png' />";
利用Wordpress功能bloginfo获取主题路径!
我得到的只是页面上打印的路径,没有图像!
谢谢
输出是什么:
http://www.example.co.uk/wp-content/themes/example
<img src="/img/digital.png">
Having a quotes issue, need a second pair of eyes!
echo "<img src='" . bloginfo('template_url') . "img/" . $f['mainImage'] . ".png' />";
Using the Wordpress function bloginfo to get the theme path!
All i'm getting is the path printed out on the page, no image!
Thanks
What is output:
http://www.example.co.uk/wp-content/themes/example
<img src="/img/digital.png">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
函数
bloginfo()
执行自己的 echo。http://codex.wordpress.org/Function_Reference/bloginfo
在您的情况下,您可以使用此代码:
The function
bloginfo()
performs its own echo.http://codex.wordpress.org/Function_Reference/bloginfo
In your situation, you would use this code:
bloginfo()
仅用于直接输出请求的值。使用get_bloginfo()
在回显之前处理该值它。bloginfo()
is only used to directly output the requested value. Useget_bloginfo()
instead to work with the value before echo'ing it.正如 jnpcl 所猜测的那样,看起来
bloginfo()
正在为您打印出数据。您有两个选择:
get_bloginfo()
函数,该函数不会只打印出来而是返回它考虑到As jnpcl has surmised, it looks like
bloginfo()
is print out the data for you.You've got two options:
get_bloginfo()
function, which wont just print it out but return it instead