get_header_image

get_header_image

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.1

apply_filters('get_header_image') is found 1 times:

  • /wp-includes/theme.php line 1189
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    * @since 6.1.0
     *
     * @param string $url Header image URL.
     */
    $url = apply_filters( 'get_header_image', $url );
     
    if ( ! is_string( $url ) ) {
        return false;
    }
     
    $url = trim( $url );