oembed_iframe_title_attribute

oembed_iframe_title_attribute

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('oembed_iframe_title_attribute') is found 1 times:

  • /wp-includes/embed.php line 882
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    * @param string $result The oEmbed HTML result.
     * @param object $data   A data object result from an oEmbed provider.
     * @param string $url    The URL of the content to be embedded.
     */
    $title = apply_filters( 'oembed_iframe_title_attribute', $title, $result, $data, $url );
     
    if ( '' === $title ) {
        return $result;
    }
     
    if ( isset( $attrs['title'] ) ) {