the_excerpt_embed

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

WordPress Version: 4.6

/**
 * Displays the post excerpt for the embed template.
 *
 * Intended to be used in 'The Loop'.
 *
 * @since 4.4.0
 */
function the_excerpt_embed()
{
    $output = get_the_excerpt();
    /**
     * Filters the post excerpt for the embed template.
     *
     * @since 4.4.0
     *
     * @param string $output The current post excerpt.
     */
    echo apply_filters('the_excerpt_embed', $output);
}

WordPress Version: 4.4

/**
 * Displays the post excerpt for the embed template.
 *
 * Intended to be used in 'The Loop'.
 *
 * @since 4.4.0
 */
function the_excerpt_embed()
{
    $output = get_the_excerpt();
    /**
     * Filter the post excerpt for the embed template.
     *
     * @since 4.4.0
     *
     * @param string $output The current post excerpt.
     */
    echo apply_filters('the_excerpt_embed', $output);
}