wp_body_open

The timeline below displays how wordpress function wp_body_open has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Fires the wp_body_open action.
 *
 * See {@see 'wp_body_open'}.
 *
 * @since 5.2.0
 */
function wp_body_open()
{
    /**
     * Triggered after the opening body tag.
     *
     * @since 5.2.0
     */
    do_action('wp_body_open');
}

WordPress Version: 5.4

/**
 * Fire the wp_body_open action.
 *
 * See {@see 'wp_body_open'}.
 *
 * @since 5.2.0
 */
function wp_body_open()
{
    /**
     * Triggered after the opening body tag.
     *
     * @since 5.2.0
     */
    do_action('wp_body_open');
}

WordPress Version: 5.2

/**
 * Fire the wp_body_open action.
 *
 * * See {@see 'wp_body_open'}.
 *
 * @since 5.2.0
 */
function wp_body_open()
{
    /**
     * Triggered after the opening <body> tag.
     *
     * @since 5.2.0
     */
    do_action('wp_body_open');
}