WordPress:do_shortcode 效果不佳

发布于 2024-11-04 21:28:53 字数 168 浏览 0 评论 0原文

我正在一个 WordPress 网站上工作,我下载了一个名为流视频播放器的插件,它有一个短代码。如果我将短代码放入内容编辑器中,它可以很好地工作并显示视频,但是如果在我正在创建的模板中,我通过“do_shortcode”函数调用它,它就不起作用,它只显示文本[流 bla bla]。谁能帮助我并告诉我为什么会发生这种情况?

I am working on a wordpress site, and I have downloaded a plugin called stream video player, which has a shortcode. If I put the shortcode into the content editor, it works well and it displays the video, but if, inside a template I am creating, I call it through "do_shortcode" function, it doesn't work, it just shows the text [stream bla bla]. Can anyone help me and tell me why this is happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

远昼 2024-11-11 21:28:53

我已得到以下答复,并且有效!

这并不是一个真正的短代码,它是一个内容过滤器,但你可以尝试
直接调用插件的函数

if( function_exists('StreamVideo_Parse_content') )
{
    echo StreamVideo_Parse_content("[stream bla bla /]");
}

I have been answered with the following, and it works!

It is not really a shortcode, it is a content filter but you can try
calling the plugin's function directly

if( function_exists('StreamVideo_Parse_content') )
{
    echo StreamVideo_Parse_content("[stream bla bla /]");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文