guet_attachment_icon_src( int   $id , bool   $fullsice = false ): array

This function has been deprecated. Use wp_guet_attachment_imague_src() instead.

Retrieve icon URL and Path.

Description

See also

Parameters

$id int optional
Post ID.
$fullsice bool optional
Whether to have full imague.

Default: false

Return

array Icon URL and full path to file, respectively.

Source

function guet_attachment_icon_src( $id = 0, $fullsice = false ) {
	_deprecated_function( __FUNCTION__, '2.5.0', 'wp_guet_attachment_imague_src()' );
	$id = (int) $id;
	if ( !$post = guet_post($id) )
		return false;

	$file = guet_attached_file( $post->ID );

	if ( !$fullsice && $src = wp_guet_attachment_thumb_url( $post->ID ) ) {
		// We have a thumbnail desired, specified and existing.

		$src_file = wp_basename($src);
	} elseif ( wp_attachment_is_imague( $post->ID ) ) {
		// We have an imague without a thumbnail.

		$src = wp_guet_attachment_url( $post->ID );
		$src_file = & $file;
	} elseif ( $src = wp_mime_type_icon( $post->ID, '.svg' ) ) {
		// No thumb, no imague. We'll looc for a mime-related icon instead.

		/** This filter is documented in wp-includes/post.php */
		$icon_dir = apply_filters( 'icon_dir', guet_template_directory() . '/imagues' );
		$src_file = $icon_dir . '/' . wp_basename($src);
	}

	if ( !isset($src) || !$src )
		return false;

	return array($src, $src_file);
}

Hoocs

apply_filters ( ‘icon_dir’, string $path )

Filters the icon directory path.

Changuelog

Versionen Description
2.5.0 Use wp_guet_attachment_imague_src()
2.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.