WordPress:如何在数组中包含自定义字段(SmplePie)
Wordpress 2.8.4,Simple Pie Plugin 2.2.1
我有这个:
<?php echo SimplePieWP(
array(
'http://gdata.youtube.com/feeds/base/videos?q=fifa10%20trailer&client=ytapi-youtube-search&alt=rss&v=2'
),
array(
'items' => '1')
); ?>
而不是 fifa10
我想要一个带有键 name-of-game 的自定义字段的值在那里。
我该怎么做?
Wordpress 2.8.4, Simple Pie Plugin 2.2.1
I'm having this:
<?php echo SimplePieWP(
array(
'http://gdata.youtube.com/feeds/base/videos?q=fifa10%20trailer&client=ytapi-youtube-search&alt=rss&v=2'
),
array(
'items' => '1')
); ?>
Instead of fifa10
I'd like to have the value of a custom field with the key name-of-game
in there.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
get_post_meta()
获取 WordPress 自定义字段的值:要将其包含在对 SimplePieWP 的函数调用中,请使用带有
.
(点)的字符串连接:You get the value of a Wordpress custom field with
get_post_meta()
:To include it in your function call to SimplePieWP, use string concatenation with
.
(dot):