Skip to content

Instantly share code, notes, and snippets.

View orenshim's full-sized avatar

Oren Shimon orenshim

View GitHub Profile
<?php if ( is_single() ) : ?>
[elementor-template id="556"]
<?php endif; ?>
/* CSS for GeneratePress SVG logo size */ .header-image { width: 310px; }
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
'content' => __( 'Content' ),
) );
}
add_filter( 'image_size_names_choose', 'my_custom_sizes' );
add_image_size( 'content', '800', '9999', false );