Thread Starter
moiety
(@moiety)
I’m currently working with MAMP, so it’s only locally on my computer. I am however using the simple melody theme and how done very little changing with my child theme. Only some colors and font styles as of yet.
https://ww.wp.xz.cn/themes/simple-melody/
Thread Starter
moiety
(@moiety)
I tried adding
add_filter( 'post_thumbnail_size', 'm_new_size' );
function m_new_size( $size ){
if ( ( $GLOBALS['wp_query']->current_post % 3 ) == 0 ){
return genesis_do_post_image(1000,400,true);
} else {
return genesis_do_post_image(600,600,true);
}
}
to functions.php, but it didn’t work… I’m starting to wonder if I should just crop the featured image with css, but I’m not sure how to do that either…