Title: Anibesh Thapa's Replies | WordPress.org

---

# Anibesh Thapa

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sampression Lite] How to change "Order By" Categories default on Header?](https://wordpress.org/support/topic/how-to-change-order-by-categories-default-on-header/)
 *  [Anibesh Thapa](https://wordpress.org/support/users/anibesh/)
 * (@anibesh)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/how-to-change-order-by-categories-default-on-header/#post-5926804)
 * Make a [Child theme](http://codex.wordpress.org/Child_Themes).Then copy header.
   php on your child theme. Replace the lines 131 – 132 with the code below in header.
   php of your child theme.
 *     ```
       /*to exclude some categories */
       		$args = array( 'hide_empty' => 1,
                                      'orderby'    => 'id');
       ```
   
 * Please visit the link for more information on “orderby” options. [https://codex.wordpress.org/Function_Reference/get_categories](https://codex.wordpress.org/Function_Reference/get_categories)
 * Thanks,
    Anibesh
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sampression Lite] Category/Archive Column on left Removal](https://wordpress.org/support/topic/categoryarchive-column-on-left-removal/)
 *  [Anibesh Thapa](https://wordpress.org/support/users/anibesh/)
 * (@anibesh)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/categoryarchive-column-on-left-removal/#post-5849852)
 * Hello thehotpeg,
    Make a [Child theme](http://codex.wordpress.org/Child_Themes)
   and copy archive.php, category.php and author.php from parent theme. Then remove
   below code from these files(childtheme).
 *     ```
       <!-- Corner Stamp: It will always remaing to the right top of the page -->
         <section class="corner-stamp post columns four item">
         <header><h3><?php _e('Archives', 'sampression'); ?></h3></header>
         <div class="entry">
           <ul class="categories archives">
               <?php
       		// Getting Archive Lists
       		 wp_get_archives( '' ); ?>
           </ul>
         </div>
   
          <header><h3><?php _e('Categories', 'sampression'); ?></h3></header>
         <div class="entry">
           <ul class="categories">
           	<?php
       		// Getting Categories Lists
       		 wp_list_categories('title_li'); ?>
           </ul>
         </div>
         </section>
         <!-- .corner-stamp -->
       ```
   
 * For Second menu, you have to create a new menu on WordPress dashboard and add
   below code on childtheme header.php
    `<?php wp_nav_menu( array('menu' => 'MENU_NAV'));?
   >`
 * Thanks,
    Anibesh

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