if ( ! function_exists( 'siteorigin_tabs_enable_corp_masonry_loop' ) ) :
function siteorigin_tabs_enable_corp_masonry_loop() { ?>
<script>
jQuery( function ( $ ) {
$( '.sow-tabs-panel' ).on( 'show', function() {
if ( $( this ).find( '> :hidden' ) ) {
$( this ).find( '.blog-layout-masonry').masonry( {
itemSelector: '.hentry',
columnWidth: '.hentry'
} );
}
});
} );
</script>
<?php }
endif;
add_action( 'wp_footer', 'siteorigin_tabs_enable_corp_masonry_loop' );