Changeset 54556 for branches/5.5/src/wp-includes/deprecated.php
- Timestamp:
- 10/17/2022 05:58:36 PM (2 years ago)
- Location:
- branches/5.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.5
- Property svn:mergeinfo changed
/trunk merged: 54521-54530,54541
- Property svn:mergeinfo changed
-
branches/5.5/src/wp-includes/deprecated.php
r48575 r54556 4101 4101 return remove_allowed_options( $del_options, $options ); 4102 4102 } 4103 4104 /** 4105 * Filter the SQL clauses of an attachment query to include filenames. 4106 * 4107 * @since 4.7.0 4108 * @deprecated 6.0.3 4109 * @access private 4110 * 4111 * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY, 4112 * DISTINCT, fields (SELECT), and LIMITS clauses. 4113 * @return array The unmodified clauses. 4114 */ 4115 function _filter_query_attachment_filenames( $clauses ) { 4116 _deprecated_function( __FUNCTION__, '6.0.3', 'add_filter( "wp_allow_query_attachment_by_filename", "__return_true" )'); 4117 remove_filter( 'posts_clauses', __FUNCTION__ ); 4118 return $clauses; 4119 } 4120
Note: See TracChangeset
for help on using the changeset viewer.