HTML_Template_IT 和 wordpress
我想在我的 WordPress 页面模板之一中使用 PEAR 的 HTML_Template_IT,这样我就可以将 HTML 与 PHP 分开。我得到了它的工作,但我不确定一件事。
WordPress 的内置函数 get_header() 实际上回显了 HTML - 所以我无法从技术上将其设置为模板变量。这是否被认为是可接受的,或者是否有其他方法将 get_header() 的内容放入变量中?
谢谢!
I want to use PEAR's HTML_Template_IT in one of my Wordpress page templates so I can separate the HTML from the PHP. I got it working, except I am not sure about one thing.
Wordpress's built-in function get_header() actually echo's HTML - so I can't technically set it as a template variable. Is this considered acceptable or is there another way to put the contents of get_header() in a variable?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,您可以执行 ob_start() 打开输出缓冲,调用该函数,使用 ob_get_contents() 获取将被回显的值,然后使用 ob_end_clean() 擦除缓冲区并关闭缓冲。
有关更多信息,请参阅输出缓冲控制。
Well, you could do ob_start() to turn output buffering on, call the function, use ob_get_contents() to get the value that would be echoed and then use ob_end_clean() to erase the buffer and turn buffering off.
See Output Buffering Control for more.
注意 get_footer(),get_sidebar(),...它们的工作方式相同。
它们都是由 do_action() .../wp-includes/plugin.php 处理的
代码: call_user_func_array($the_['function'],....)
也许最好将“获取 html 代码”放在那里。
但请留意 WP 更新。
Watch out for get_footer(),get_sidebar(),... They work the same way.
They are all handled by do_action() .../wp-includes/plugin.php
code: call_user_func_array($the_['function'],....)
Perhaps it's better to place you 'get html-code' there.
But watch out on WP-Updates.