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