_filter_query_attachment_filenames

函数
_filter_query_attachment_filenames ( $clauses )
Access
Private
参数
  • (array) $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY, DISTINCT, fields (SELECT), and LIMITS clauses.
    Required:
返回值
  • (array) The unmodified clauses.
定义位置
相关方法
wp_delete_attachment_files_fix_attachment_linkswp_ajax_query_attachmentsthe_attachment_links_delete_attachment_theme_mod
引入
4.7.0
弃用
add_filter( "wp_allow_query_attachment_by_filename.0

filter_query_attachment_filenames: 这个钩子用来过滤一个查询中的附件文件名。这允许开发者修改查询和添加自定义逻辑。

过滤附件查询的SQL条款,以包括文件名。

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

常见问题

FAQs
查看更多 >