Home/Hooks/attachment_max_dims
FILTER

attachment_max_dims

WordPress filter hook

wp-includes/deprecated.php
Line 1951
1 Parameter
View Source

Usage

add_filter( 'attachment_max_dims', 'your_callback_function', 10, 1 );

Filter Callback:

function your_callback_function( $max_dims ) {
    // Your code here
    return $max_dims;
}

Parameters

$max_dims

Parameter 1

🔄 Filter Hook

Filter hooks allow you to modify data before it is saved to the database or displayed on the screen. Filters must return a value.