Skip to content

Instantly share code, notes, and snippets.

@skyshab
Created August 12, 2016 20:22
Show Gist options
  • Save skyshab/e9a9bc39359163ce928e7f13dbd71f05 to your computer and use it in GitHub Desktop.
Save skyshab/e9a9bc39359163ce928e7f13dbd71f05 to your computer and use it in GitHub Desktop.
filter featured image width and height
add_filter( 'et_pb_index_blog_image_width', 'featured_image_width_filter', 100 );
function featured_image_width_filter( $val )
{
// single page featured image
if ( is_single() )
{
return 625;
}
// post box image in blog feed
return 420;
}
add_filter( 'et_pb_index_blog_image_height', 'featured_image_height_filter', 100 );
function featured_image_height_filter( $val )
{
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment