Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi

    That is called a sidebar and most modern themes have them already. Without seeing what your present theme looks like (URL) its very difficult to explain how you can add that to your site.

    Thread Starter ian-ratledge

    (@ian-ratledge)

    My site is https://www.crystalgamer.com

    I didn’t mean the sidebar, I already have one. What I meant was how the home page of https://www.paragamer.com is split into 2 columns: Reviews and Previews.

    How am I able to do this?

    Hi
    Crystalgamer is a magazine theme that has a number of WordPress loops on that front page.

    Here is some code from a magazine theme that shows how these additional loops are constructed

    <div class="featured">
       <?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
         <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    	<?php the_content(__('Read the story &raquo;'));?>
       <?php endwhile; ?>
    </div>

    There can be a number of these blocks, each with a different category code in place of cat=1

    Does that help?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Split page in 2’ is closed to new replies.