wp_meta

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

WordPress Version: 4.6

/**
 * Theme container function for the 'wp_meta' action.
 *
 * The {@see 'wp_meta'} action can have several purposes, depending on how you use it,
 * but one purpose might have been to allow for theme switching.
 *
 * @since 1.5.0
 *
 * @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
 */
function wp_meta()
{
    /**
     * Fires before displaying echoed content in the sidebar.
     *
     * @since 1.5.0
     */
    do_action('wp_meta');
}

WordPress Version: 4.1

/**
 * Theme container function for the 'wp_meta' action.
 *
 * The 'wp_meta' action can have several purposes, depending on how you use it,
 * but one purpose might have been to allow for theme switching.
 *
 * @since 1.5.0
 *
 * @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
 */
function wp_meta()
{
    /**
     * Fires before displaying echoed content in the sidebar.
     *
     * @since 1.5.0
     */
    do_action('wp_meta');
}

WordPress Version: 3.9

/**
 * Theme container function for the 'wp_meta' action.
 *
 * The 'wp_meta' action can have several purposes, depending on how you use it,
 * but one purpose might have been to allow for theme switching.
 *
 * @since 1.5.0
 *
 * @link http://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
 */
function wp_meta()
{
    /**
     * Fires before displaying echoed content in the sidebar.
     *
     * @since 1.5.0
     */
    do_action('wp_meta');
}

WordPress Version: 3.7

/**
 * Theme container function for the 'wp_meta' action.
 *
 * The 'wp_meta' action can have several purposes, depending on how you use it,
 * but one purpose might have been to allow for theme switching.
 *
 * @since 1.5.0
 * @link http://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
 * @uses do_action() Calls 'wp_meta' hook.
 */
function wp_meta()
{
    do_action('wp_meta');
}