PHP WordPress 引用问题

发布于 2024-10-31 22:51:31 字数 345 浏览 1 评论 0原文

遇到报价问题,需要第二双眼睛!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

羅雙樹 2024-11-07 22:51:31

函数 bloginfo() 执行自己的 echo。

http://codex.wordpress.org/Function_Reference/bloginfo

在您的情况下,您可以使用此代码:

echo "<img src='"; bloginfo('template_url'); echo "img/" . $f['mainImage'] . ".png' />";

The function bloginfo() performs its own echo.

http://codex.wordpress.org/Function_Reference/bloginfo

In your situation, you would use this code:

echo "<img src='"; bloginfo('template_url'); echo "img/" . $f['mainImage'] . ".png' />";
快乐很简单 2024-11-07 22:51:31

bloginfo()仅用于直接输出请求的值。使用 get_bloginfo() 在回显之前处理该值它。

echo sprintf(
    '<img src="%s/img/%s.png" />', 
    get_bloginfo('template_url'), 
    $f['mainImage']
);

bloginfo() is only used to directly output the requested value. Use get_bloginfo() instead to work with the value before echo'ing it.

echo sprintf(
    '<img src="%s/img/%s.png" />', 
    get_bloginfo('template_url'), 
    $f['mainImage']
);
凉城 2024-11-07 22:51:31

正如 jnpcl 所猜测的那样,看起来 bloginfo() 正在为您打印出数据。

您有两个选择:

  • 使用 get_bloginfo() 函数,该函数不会只打印出来而是返回它考虑到
  • 这一点,回显图像标签的一部分,调用该函数,回显其余部分

As jnpcl has surmised, it looks like bloginfo() is print out the data for you.

You've got two options:

  • use the get_bloginfo() function, which wont just print it out but return it instead
  • Take that into account, echo part of the image tag, call the function, echo the rest
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文