wp_body_open()
Fire the wp_body_open action.
Description Description
See ‘wp_body_open’.
Source Source
File: wp-includes/general-template.php
function wp_body_open() { /** * Triggered after the opening body tag. * * @since 5.2.0 */ do_action( 'wp_body_open' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
WordPress theme developers should use `
wp_head()
`, `wp_body_open()
` and `wp_footer()
` functions in their themes (read this for more information).The new WordPress theme structure:
Expand full source codeCollapse full source code
Don’t forget backward compatibility.
I Think This is the best way for add
wp_body_open();
function for backwards compatibilityStep 1 : Checked if function is exits, if not exits then make a function called
wp_body_open();
Example:
Then put the function after the body tag.
Example:
Expand full source codeCollapse full source code
Custom Theme Hooks
Many themes use their own custom actions at the beginning of body tag. They should consider migrating to the core wp_body_open action.
For backwards compatibility, when injecting custom code, theme developers can use conditional logic to hook to the right action