function my_picu_large_image_size( $sizes ) {
return array(
'width' => 3000,
'height' => 2000
);
}
add_filter( 'picu_large_image_size', 'my_picu_large_image_size' );
Code language: PHP (php)
function my_picu_large_image_size( $sizes ) {
return array(
'width' => 3000,
'height' => 2000
);
}
add_filter( 'picu_large_image_size', 'my_picu_large_image_size' );
Code language: PHP (php)
If you couldn’t find what you were looking for and need more assistance, please get in touch with us directly and we’re happy to help.