attachment_max_dims
The WordPress Core attachment max dims hook.
Description
Parameters (1)
- 0. $max_dims (unknown)
- The max dims.
Usage
- To run the hook, copy the example below.
- $max_dims = apply_filters( 'attachment_max_dims', $max_dims );
- if ( !empty( $max_dims ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the attachment_max_dims callback
- function filter_attachment_max_dims( $max_dims ) {
- // make filter magic happen here...
- return $max_dims;
- };
- // add the filter
- add_filter( 'attachment_max_dims', 'filter_attachment_max_dims', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'attachment_max_dims', 'filter_attachment_max_dims', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/deprecated.php
- if ( ($max_dims = apply_filters('attachment_max_dims', $max_dims)) && file_exists($src_file) ) {