Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- function changeLayout() {
- var blogModule = $( '.wpc-blog' );
- if ( blogModule.length ) {
- var artcile = $( '.et_pb_posts.wpc-blog article' );
- artcile.each( function() {
- var featuredImage = $( this ).find( '.entry-featured-image-url' ),
- articleElements = $( this ).find( '.entry-title, .post-content, .post-meta' );
- $( this ).addClass( 'clearfix' );
- featuredImage.wrap( '<div class="wpc-left-box"></div>' );
- articleElements.wrapAll( "<div class='wpc-right-box'></div>" );
- } )
- }
- }
- changeLayout();
- $( document ).ajaxSuccess(function() {
- changeLayout()
- });
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment