portfolio.js 211 B

12345678
  1. ( function( $ ) {
  2. // Layout posts that arrive via infinite scroll
  3. $( document.body ).on( 'post-load', function () {
  4. $( '.site-main > .hentry' ).appendTo( $( '.portfolio-projects' ) );
  5. } );
  6. } )( jQuery );