/*
	Theme Name: ELNET
	Theme URI: https://elnet-deutschland.de/
	Description: Theme for the European Leadership Network
	Author: Roy Eyal
	Author URI: https://royeyal.com/
	Template: oceanwp
	Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
function custom_timeline_express_announcement_image_size( $image_size, $post_id ) {
    $image_size = 'full';
    return $image_size;
}
add_filter( 'timeline-express-announcement-img-size' , 'custom_timeline_express_announcement_image_size', 10, 2 );
