_filter_query_attachment_filenames( array $clauses ): array

In this article

This function has been deprecated.

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Filter the SQL clauses of an attachment query to include filenames.

Parameters

$clausesarrayrequired
An array including WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT, fields (SELECT), and LIMITS clauses.

Return

array The unmodified clauses.

Source

function _filter_query_attachment_filenames( $clauses ) {
	_deprecated_function( __FUNCTION__, '6.0.3', 'add_filter( "wp_allow_query_attachment_by_filename", "__return_true" )' );
	remove_filter( 'posts_clauses', __FUNCTION__ );
	return $clauses;
}

Changelog

VersionDescription
6.0.3This function has been deprecated.
4.7.0Introduced.

User Contributed Notes

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