Drupal - 代码可以在 page.tpl.php 中运行,但不能在块中运行
以下代码在我的 page.tpl.php 中工作正常,但我无法让它在块中工作:
<?php if (function_exists('twitter_pull_render')) { print twitter_pull_render('@ahmednuaman', $title = NULL, $num_items = 5); } ?>
我尝试了完整的 html 和 php 输入格式。我尝试删除开始和结束 php 标签。我尝试关闭所有输入过滤器。
任何人都知道为什么这不起作用?我之前没有尝试过将 php 放在一个块中,所以我可能做错了。 谢谢
The following code works fine in my page.tpl.php but I cant get it to work in a block:
<?php if (function_exists('twitter_pull_render')) { print twitter_pull_render('@ahmednuaman', $title = NULL, $num_items = 5); } ?>
Ive tried full html and php input formats. Ive tried removing the opening and closing php tags. Ive tried turning off all my input filters.
Anyone have any ideas why this isn't working? I havn't tried putting php in a block before so I might be doing it wrong.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果 php 输入模块被禁用,但 php 输入过滤器仍然显示为该块的选项。
Turns out the php input module was disabled, but the php input filter still showed up as an option for the block.