wp_body_open() – Fire the wp_body_open action.

You appear to be a bot. Output may be restricted

Description

Fires the wp_body_open action.

See wp_body_open .

Usage

wp_body_open();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/general-template.php
Lines:

1 to 8 of 8
function wp_body_open() {
  
/**
 * Triggered after the opening body tag.
 *
 * @since 5.2.0
 */
  do_action( 'wp_body_open' );
}
 

 View on GitHub View on Trac