get_header_image

get_header_image

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('get_header_image') is found 1 times:

  • /wp-includes/theme.php line 1238
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    * @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 );