Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 WordPress 插件,它使管理员能够在 WYSIWYG 编辑器中生成一些 html 代码。此 html 代码中有一些按钮具有特定的操作 - 这是通过 jQuery 在单个页面上完成的。
但是,我需要页面 id 作为 jQuery 的输入;我想为每个页面添加一个带有页面 ID 的隐藏输入字段。
是否有一个钩子可以向每个页面添加特定的 html 代码,以便我可以通过 jQuery 访问它?
解决了:
function add_to_content($content) { $content .= "<input type='hidden' name='post_id' value='".get_the_ID()."' />"; return $content; } add_filter('the_content', 'add_to_content');