wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
file_is_displayable_image › WordPress Function
Seit2.5.0
Veraltetn/v
› file_is_displayable_image ( $path )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Validates that file is suitable for displaying within a web page.
Ähnliche Funktionen: file_is_valid_image, display_space_usage, maybe_disable_link_manager, is_gd_image, media_upload_image
Quellcode
function file_is_displayable_image( $path ) { $displayable_image_types = array( IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP, IMAGETYPE_ICO, IMAGETYPE_WEBP, IMAGETYPE_AVIF ); $info = wp_getimagesize( $path ); if ( empty( $info ) ) { $result = false; } elseif ( ! in_array( $info[2], $displayable_image_types, true ) ) { $result = false; } else { $result = true; } /** * Filters whether the current image is displayable in the browser. * * @since 2.5.0 * * @param bool $result Whether the image can be displayed. Default true. * @param string $path Path to the image. */ return apply_filters( 'file_is_displayable_image', $result, $path ); }