mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
11 lines
298 B
Text
11 lines
298 B
Text
add_filter( 'generate_blog_image_attributes', function( $atts ) {
|
|
// Set up our conditional
|
|
if ( is_post_type_archive( 'portfolio' ) ) {
|
|
$atts[ 'width' ] = 300;
|
|
$atts[ 'height' ] = 300;
|
|
$atts[ 'crop' ] = true;
|
|
}
|
|
|
|
// Return our options
|
|
return $atts;
|
|
} );
|