badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: featured image size issue

#19435
spectrum_7
Participant

Well, no sooner than I ask, I figure it out… I forgot to wrap the add_image_size in a function and make sure it fires after the priority that is set on the function that created the original featured image size.

	// Custom cropping on Interface featured image
	
	add_action( 'interface_init', 'override_featured_image', 30 );
		
	function override_featured_image() {
	
	add_image_size( 'featured', 670, 300, array( 'left', 'top' ) );
	}