Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. if ( ! function_exists( 'siteorigin_tabs_enable_corp_masonry_loop' ) ) :
  2. function siteorigin_tabs_enable_corp_masonry_loop() { ?>
  3. <script>
  4.  jQuery( function ( $ ) {
  5.      $( '.sow-tabs-panel' ).on( 'show', function() {
  6.          if ( $( this ).find( '> :hidden' ) ) {
  7.              $( this ).find( '.blog-layout-masonry').masonry( {
  8.                 itemSelector: '.hentry',
  9.                 columnWidth: '.hentry'
  10.             } );
  11.          }
  12.      });
  13.  } );
  14. </script>
  15. <?php }
  16. endif;
  17. add_action( 'wp_footer', 'siteorigin_tabs_enable_corp_masonry_loop' );