Title: eguru's Replies | WordPress.org

---

# eguru

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/eguru/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/eguru/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Search result is disappearing when I search from the search result](https://wordpress.org/support/topic/search-result-is-disappearing-when-i-search-from-the-search-result/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/search-result-is-disappearing-when-i-search-from-the-search-result/#post-6882733)
 * Hello all,
    Any body here to help me out to find out the problem? Thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [pagination problem](https://wordpress.org/support/topic/pagination-problem-20/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/pagination-problem-20/#post-2403322)
 * Thank you! that worked like a charm… 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [pagination problem](https://wordpress.org/support/topic/pagination-problem-20/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/pagination-problem-20/#post-2403231)
 * sorry for the ignorance…
    here is the code: [](http://pastebin.com/DPd6Dn1e) `
   http://pastebin.com/DPd6Dn1e` `http://www.konsumenindonesia.com/`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [pagination problem](https://wordpress.org/support/topic/pagination-problem-20/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/pagination-problem-20/#post-2403151)
 * BTW I have tried the default pagination of wordpress code also. Both does the
   same
    thaq
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[REQ]how to change the posting order?](https://wordpress.org/support/topic/reqhow-to-change-the-posting-order/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/reqhow-to-change-the-posting-order/#post-2155242)
 * I found the code at the last :
 *     ```
       add_filter( 'load-post-new.php', 'wpse14403_load_post_new' );
       function wpse14403_load_post_new()
       {
           $post_type = 'post';
           if ( isset( $_REQUEST['post_type'] ) ) {
               $post_type = $_REQUEST['post_type'];
           }
   
           // Only do this for posts
           if ( 'post' != $post_type ) {
               return;
           }
   
           if ( array_key_exists( 'category_id', $_REQUEST ) ) {
               add_action( 'wp_insert_post', 'wpse14403_wp_insert_post' );
               return;
           }
   
           // Show intermediate screen
           extract( $GLOBALS );
           $post_type_object = get_post_type_object( $post_type );
           $title = $post_type_object->labels->add_new_item;
   
           include( ABSPATH . 'wp-admin/admin-header.php' );
   
           $dropdown = wp_dropdown_categories( array(
               'name' => 'category_id[]',
               'hide_empty' => false,
               'echo' => false,
           ) );
   
           $category_label = __( 'Category:' );
           $continue_label = __( 'Continue' );
           echo <<<HTML
       <div class="wrap">
           <h2>{$title}</h2>
   
           <form method="get">
               <table class="form-table">
                   <tbody>
                       <tr valign="top">
                           <th scope="row">{$category_label}</th>
                           <td>{$dropdown}</td>
                       </tr>
                       <tr>
                           <td></td>
                           <th><input name="continue" type="submit" class="button-primary" value="{$continue_label}" /></th>
                   </tbody>
               </table>
               <input type="hidden" name="post_type" value="{$post_type}" />
           </form>
       </div>
       HTML;
           include( ABSPATH . 'wp-admin/admin-footer.php' );
           exit();
       }
   
       // This function will only be called when creating an empty post,
       // via <code>get_default_post_to_edit()</code>, called in post-new.php
       function wpse14403_wp_insert_post( $post_id )
       {
           wp_set_post_categories( $post_id, $_REQUEST['category_id'] );
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[REQ]how to change the posting order?](https://wordpress.org/support/topic/reqhow-to-change-the-posting-order/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/reqhow-to-change-the-posting-order/#post-2155047)
 * is there any one who knows how to do it? Please help me guys
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to make links on the header to the recent posts ?](https://wordpress.org/support/topic/how-to-make-links-on-the-header-to-the-recent-posts/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/how-to-make-links-on-the-header-to-the-recent-posts/#post-1604464)
 * Please help me!!!! any body here?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to make links on the header to the recent posts ?](https://wordpress.org/support/topic/how-to-make-links-on-the-header-to-the-recent-posts/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/how-to-make-links-on-the-header-to-the-recent-posts/#post-1604201)
 * <?php wp_list_categories( ); ?> will only list the category links..it will not
   show the posts. What I need is if i click on the main menus (category name) i
   will be ale to see the recent post in side that particular gallery. Just like
   we are clicking on a static websites main Links.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Heavy server load: account may be closed](https://wordpress.org/support/topic/heavy-server-load-account-may-be-closed/)
 *  [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/heavy-server-load-account-may-be-closed/#post-1603180)
 * The best option is to change your server / service provider
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [recent post links on the header :: HOW??](https://wordpress.org/support/topic/recent-post-links-on-the-header-how/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/recent-post-links-on-the-header-how/#post-1603148)
 * `<a href="<?php echo the_permalink(); ?> " class=main_menu_links >NEWS </a>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to give an option for user can hide a particular post?](https://wordpress.org/support/topic/how-to-give-an-option-for-user-can-hide-a-particular-post/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-give-an-option-for-user-can-hide-a-particular-post/#post-1515572)
 * hello any one has any idea? pleasee help if any one knows….thaq
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to limit number of character of a post on front page?](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/#post-1513102)
 * Thanks a lot RVoodoo.. Yes it is working fine
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to limit number of character of a post on front page?](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/#post-1513094)
 * It worked like charm, Esmi. But is there any way I can add “read more” to the
   excerpt ? thax
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to limit number of character of a post on front page?](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/)
 *  Thread Starter [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-limit-number-of-character-of-a-post-on-front-page/#post-1513093)
 * thax ESMI for ur valuable time
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2 Blogs 1 user table](https://wordpress.org/support/topic/2-blogs-1-user-table/)
 *  [eguru](https://wordpress.org/support/users/eguru/)
 * (@eguru)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/2-blogs-1-user-table/#post-1091248)
 * I am getting an error ” You do not have sufficient permissions to access this
   page.” What is the reason for this error? Please advice

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/eguru/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/eguru/replies/page/2/?output_format=md)