After adding a custom placeholder image for your team members, you can do it with the following custom codes if you want to set a custom height and width for that placeholder image. You can see that there are two custom codes available, one for the height and the other for the width of the image.
function sptp_placeholder_image_width() {
return 300; // in pixel
}
add_filter( 'sptp_placeholder_image_width', 'sptp_placeholder_image_width' );
function sptp_placeholder_image_height() {
return 300; // in pixel
}
add_filter( 'sptp_placeholder_image_height', 'sptp_placeholder_image_height' );