HTML_Template_IT 和 wordpress

发布于 2024-10-08 18:05:57 字数 226 浏览 4 评论 0原文

我想在我的 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 技术交流群。

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

发布评论

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

评论(2

少女情怀诗 2024-10-15 18:05:57

那么,您可以执行 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.

⊕婉儿 2024-10-15 18:05:57

注意 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文