Title: shawn's Replies | WordPress.org

---

# shawn

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-PageNavi] wp-navi works great everywhere except the front(index.php) page!](https://wordpress.org/support/topic/wp-navi-works-great-everywhere-except-the-frontindexphp-page/)
 *  [shawn](https://wordpress.org/support/users/shawnsandycom/)
 * (@shawnsandycom)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/wp-navi-works-great-everywhere-except-the-frontindexphp-page/#post-3133633)
 * Had the same problem use $page instead of $paged on the static front pages here
   a simple example..
 *     ```
       if(is_front_page() ):
           $paged = (get_query_var('page')) ? get_query_var('page') : 1;
           else  :
           $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
           endif;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Quick Jump] [Plugin: Admin Quick Jump] Love it!! One question…](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/)
 *  [shawn](https://wordpress.org/support/users/shawnsandycom/)
 * (@shawnsandycom)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/#post-2518693)
 * Yea, it was a weird change, here is a gist link to the modified code
    [Modified version](https://gist.github.com/2412702)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Quick Jump] [Plugin: Admin Quick Jump] Love it!! One question…](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/)
 *  [shawn](https://wordpress.org/support/users/shawnsandycom/)
 * (@shawnsandycom)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/#post-2518684)
 * [@divavocals](https://wordpress.org/support/users/divavocals/) when it is ordered
   by post ID the name still shows it just shows the 10 most recent post first, 
   then it goes alphabetically… Users tend to make changes to their most recent 
   post as is the default way in the wp post screen!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Quick Jump] [Plugin: Admin Quick Jump] Love it!! One question…](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/)
 *  [shawn](https://wordpress.org/support/users/shawnsandycom/)
 * (@shawnsandycom)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/#post-2518656)
 * Modified
 * `$jck_posts_recent = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts
   WHERE $wpdb->posts.post_parent = 0 AND $wpdb->posts.post_type = '$posttype' AND
   $wpdb->posts.post_status = 'publish' ORDER BY ID DESC LIMIT 10");`
 * I would love to see this, adds the 10 most recent published post then goes alphabetically…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Quick Jump] [Plugin: Admin Quick Jump] Love it!! One question…](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/)
 *  [shawn](https://wordpress.org/support/users/shawnsandycom/)
 * (@shawnsandycom)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-admin-quick-jump-love-it-one-question/#post-2518655)
 * I preferred when it was ordered by post ID makes more sense… maybe I will edit
   the code and see what I come up with…

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