Title: biehler423's Replies | WordPress.org

---

# biehler423

  [  ](https://wordpress.org/support/users/biehler423/)

 *   [Profile](https://wordpress.org/support/users/biehler423/)
 *   [Topics Started](https://wordpress.org/support/users/biehler423/topics/)
 *   [Replies Created](https://wordpress.org/support/users/biehler423/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/biehler423/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/biehler423/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/biehler423/engagements/)
 *   [Favorites](https://wordpress.org/support/users/biehler423/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lavish] Pagination for Blog](https://wordpress.org/support/topic/pagination-for-blog/)
 *  Thread Starter [biehler423](https://wordpress.org/support/users/biehler423/)
 * (@biehler423)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/pagination-for-blog/#post-6700447)
 * Okay, so there’s a new problem. I can’t highlight on the post to copy and paste
   text- it turns all text into a link to a page that cannot be found.. It’s weird.
   Any thoughts on how to fix this?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lavish] Pagination for Blog](https://wordpress.org/support/topic/pagination-for-blog/)
 *  Thread Starter [biehler423](https://wordpress.org/support/users/biehler423/)
 * (@biehler423)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/pagination-for-blog/#post-6700417)
 * Bless you!!! It worked! Thank you so much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lavish] Pagination for Blog](https://wordpress.org/support/topic/pagination-for-blog/)
 *  Thread Starter [biehler423](https://wordpress.org/support/users/biehler423/)
 * (@biehler423)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/pagination-for-blog/#post-6700402)
 * Okay, so I found the index.php but I have no idea how to find those lines. Do
   I just count them? Do I count blank ones? This is what it looks like:
    <?php /***
   The main template file. * * This is the most generic template file in a WordPress
   theme * and one of the two required files for a theme (the other being style.
   css). * It is used to display a page when nothing more specific matches a query.*
   E.g., it puts together the home page when no home.php file exists. * Learn more:
   [http://codex.wordpress.org/Template_Hierarchy](http://codex.wordpress.org/Template_Hierarchy)**
   [@package](https://wordpress.org/support/users/package/) lavish * [@since](https://wordpress.org/support/users/since/)
   1.0.0 */
 * get_header(); ?>
 * <?php get_sidebar( ‘top’ ); ?>
    <section id=”la-content-area” class=”la-contents”
   role=”main”> <?php $blogstyle = esc_attr(get_theme_mod( ‘blog_style’, ‘blogright’));
   switch ($blogstyle) { // Right Column case “blogright” : echo ‘<div class=”container”
   ><div class=”row”><div class=”col-md-8 la-blog-content” role=”main”>’;
 *  // get all the posts
    $count = 0; $query1 = new WP_Query( ‘posts_per_page=3’);
   if ( $query1->have_posts() ) : while ( $query1->have_posts() ) : $query1->the_post();//
   get the article layout $count++; get_template_part( ‘content’, get_post_format());
 *  lavish_check_blog_style_clearing($count);
    endwhile; wp_reset_query(); // get
   the pagination lavish_paging_nav(); else : // if no posts get_template_part( ‘
   content’, ‘none’ ); endif; echo ‘</div><div class=”col-md-4 right_sidebar”><aside
   id=”la-right” role=”complementary”>’; get_sidebar( ‘right’ ); echo ‘</aside></
   div></div></div>’; break;
 *  // Left Column
    case “blogleft” : echo ‘<div class=”container”><div class=”row”
   ><div class=”col-md-4 left_sidebar”><aside id=”la-left” role=”complementary”>’;
   get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div class=”col-md-8 la-blog-
   content” role=”main”>’; $count = 0; if ( have_posts() ) : while ( have_posts()):
   the_post(); $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif; echo ‘</div></div></div>’; break;
 *  // Left and Right Column
    case “blogleftright” : echo ‘<div class=”container”
   ><div class=”row”><div class=”col-md-3 left_sidebar”><aside id=”la-left” role
   =”complementary”>’; get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div 
   class=”col-md-6 la-blog-content” role=”main”>’; $count = 0; if ( have_posts()):
   while ( have_posts() ) : the_post(); $count++; get_template_part( ‘content’, 
   get_post_format() ); lavish_check_blog_style_clearing($count); endwhile; lavish_paging_nav();
   else : get_template_part( ‘content’, ‘none’ ); endif; echo ‘</div><div class=”
   col-md-3 right_sidebar”><aside id=”la-right” role=”complementary”>’; get_sidebar(‘
   right’ ); echo ‘</aside></div></div></div>’; break;
 *  // Wide Column
    case “blogwide” :
 *  echo ‘<div class=”container”><div class=”row la-content” role=”main”><div class
   =”col-md-12″>’;
    $count = 0; if ( have_posts() ) : while ( have_posts() ) : the_post();
   $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif;
 *  echo ‘</div></div></div>’;
    break; //Manosary Blog Contents case “manosaryright”:
   echo ‘<div class=”container”><div class=”row”><div class=”col-md-3 left_sidebar”
   ><aside id=”la-left” role=”complementary”>’; get_sidebar( ‘left’ ); echo ‘</aside
   ></div>’; echo ‘<div class=”col-md-6 la-blog-content” role=”main”>’; $count =
   0; if ( have_posts() ) : while ( have_posts() ) : the_post(); $count++; get_template_part(‘
   content’, get_post_format() ); lavish_check_blog_style_clearing($count); endwhile;
   lavish_paging_nav(); else : get_template_part( ‘content’, ‘none’ ); endif; echo‘
   </div><div class=”col-md-3 right_sidebar”><aside id=”la-right” role=”complementary”
   >’; get_sidebar( ‘right’ ); echo ‘</aside></div></div></div>’; break;
 *  // Left Column
    case “manosaryleft” : echo ‘<div class=”container”><div class
   =”row”><div class=”col-md-3 left_sidebar”><aside id=”la-left” role=”complementary”
   >’; get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div class=”col-md-6 
   la-blog-content” role=”main”>’; $count = 0; if ( have_posts() ) : while ( have_posts()):
   the_post(); $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif; echo ‘</div><div class=”col-md-3 right_sidebar”><aside id=”la-
   right” role=”complementary”>’; get_sidebar( ‘right’ ); echo ‘</aside></div></
   div></div>’; break;
 *  // Wide Column
    case “manosarywide” :
 *  echo ‘<div class=”container”><div class=”row”><div class=”col-md-3 left_sidebar”
   ><aside id=”la-left” role=”complementary”>’;
    get_sidebar( ‘left’ ); echo ‘</
   aside></div>’; echo ‘<div class=”col-md-6 la-blog-content” role=”main”>’; $count
   = 0; if ( have_posts() ) : while ( have_posts() ) : the_post(); $count++; get_template_part(‘
   content’, get_post_format() ); lavish_check_blog_style_clearing($count); endwhile;
   lavish_paging_nav(); else : get_template_part( ‘content’, ‘none’ ); endif; echo‘
   </div><div class=”col-md-3 right_sidebar”><aside id=”la-right” role=”complementary”
   >’; get_sidebar( ‘right’ ); echo ‘</aside></div></div></div>’; break;
 *  //Boxed Blog Contents
    case “boxedright” : echo ‘<div class=”container”><div
   class=”row”><div class=”col-md-3 left_sidebar”><aside id=”la-left” role=”complementary”
   >’; get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div class=”col-md-6 
   la-blog-content” role=”main”>’; $count = 0; if ( have_posts() ) : while ( have_posts()):
   the_post(); $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif; echo ‘</div><div class=”col-md-3 right_sidebar”><aside id=”la-
   right” role=”complementary”>’; get_sidebar( ‘right’ ); echo ‘</aside></div></
   div></div>’; break;
 *  // Left Column
    case “boxedleft” : echo ‘<div class=”container”><div class=”
   row”><div class=”col-md-3 left_sidebar”><aside id=”la-left” role=”complementary”
   >’; get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div class=”col-md-6 
   la-blog-content” role=”main”>’; $count = 0; if ( have_posts() ) : while ( have_posts()):
   the_post(); $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif; echo ‘</div><div class=”col-md-3 right_sidebar”><aside id=”la-
   right” role=”complementary”>’; get_sidebar( ‘right’ ); echo ‘</aside></div></
   div></div>’; break;
 *  // Wide Column
    case “boxedwide” : echo ‘<div class=”container”><div class=”
   row”><div class=”col-md-3 left_sidebar”><aside id=”la-left” role=”complementary”
   >’; get_sidebar( ‘left’ ); echo ‘</aside></div>’; echo ‘<div class=”col-md-6 
   la-blog-content” role=”main”>’; $count = 0; if ( have_posts() ) : while ( have_posts()):
   the_post(); $count++; get_template_part( ‘content’, get_post_format() ); lavish_check_blog_style_clearing(
   $count); endwhile; lavish_paging_nav(); else : get_template_part( ‘content’, ‘
   none’ ); endif; echo ‘</div><div class=”col-md-3 right_sidebar”><aside id=”la-
   right” role=”complementary”>’; get_sidebar( ‘right’ ); echo ‘</aside></div></
   div></div>’; break;
 *  }
    ?>
 * </section>
    <?php get_footer(); ?>
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lavish] Pagination for Blog](https://wordpress.org/support/topic/pagination-for-blog/)
 *  Thread Starter [biehler423](https://wordpress.org/support/users/biehler423/)
 * (@biehler423)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/pagination-for-blog/#post-6700401)
 * We are using the free theme.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lavish] Pagination for Blog](https://wordpress.org/support/topic/pagination-for-blog/)
 *  Thread Starter [biehler423](https://wordpress.org/support/users/biehler423/)
 * (@biehler423)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/pagination-for-blog/#post-6700322)
 * [http://dreamdiapersblog.com/](http://dreamdiapersblog.com/)
 * Thank you! ( And yes we will be changing the banner photo we just haven’t done
   that yet.)

Viewing 5 replies - 1 through 5 (of 5 total)