Title: Sort Query Posts
Author: Tubal
Published: <strong>ಜನವರಿ 15, 2011</strong>
Last modified: ಸೆಪ್ಟೆಂಬರ್ 4, 2012

---

ಪ್ಲಗಿನ್‌ಗಳನ್ನು ಹುಡುಕಿ

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/sort-query-posts.svg)

# Sort Query Posts

 ‍[Tubal](https://profiles.wordpress.org/tubal/) ಮೂಲಕ

[ಡೌನ್ಲೋಡ್](https://downloads.wordpress.org/plugin/sort-query-posts.1.1.zip)

 * [ವಿವರಗಳು](https://kn.wordpress.org/plugins/sort-query-posts/#description)
 * [‍ವಿಮರ್ಶೆಗಳು‍](https://kn.wordpress.org/plugins/sort-query-posts/#reviews)
 *  [ಸ್ಥಾಪನೆ](https://kn.wordpress.org/plugins/sort-query-posts/#installation)
 * [ಅಭಿವೃದ್ಧಿ](https://kn.wordpress.org/plugins/sort-query-posts/#developers)

 [ಬೆಂಬಲ](https://wordpress.org/support/plugin/sort-query-posts/)

## ವಿವರಣೆ

A really simple and lightweight plugin (73 lines of code – comments included) to
sort posts on-the-fly without making a new query to the database (improves performance).

#### Features:

 * Supports **all `order_by` and `order` values of the [query_posts function](https://codex.wordpress.org/Function_Reference/query_posts#Orderby_Parameters)**
   except `meta_value` and `meta_value_num` (which require a database query).
 * Supports **changing the order of all types of posts**, including custom post 
   type posts and custom post type “archive” posts.

#### Documentation

This plugin adds the function `sort_query_posts_by(string $order_by [, string $order])`
to the global context.
 The second `$order` parameter is optional. Its default value
is `asc` (ascending order).

**Call this function before [the loop](https://codex.wordpress.org/The_Loop) to 
change how posts are ordered.**
 After calling this function you can show the posts
as you normally would.

You can sort posts by:

 * author
 * comment_count
 * date
 * id
 * menu_order
 * modified
 * parent
 * title

This is specially useful in two cases:

 * When you need to reorder the posts returned by the query that WordPress creates
   from your given URL. Custom post type “archive” posts are a great example of 
   this case.
 * When you need the posts returned by your customized query (e.g. `query_posts()`)
   to be shown more than once on the same page and ordered differently.

**Examples:**

    ```
    <?php sort_query_posts_by('title', 'desc'); ?>
    ```

The example above will sort posts by their title in descending order without making
a new query to the database.
 This way sorting is performance friendly.

    ```
    <?php sort_query_posts_by('ID'); ?>
    ```

The example above will sort posts by their ID in ascending order.

    ```
    <?php sort_query_posts_by('rand'); ?>
    ```

The example above will sort posts randomly. When sorting randomly `$order` is ignored.

Plugin developed by Túbal Martín at [www.margenn.com](http://www.margenn.com).

## ಸ್ಥಾಪನೆ

 1. Upload `sort-query-posts` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Use the added function `sort_query_posts_by` after any wordpress query and your
    posts will be sorted to your needs.

## ‍ವಿಮರ್ಶೆಗಳು‍

ಈ ಪ್ಲಗಿನ್‌ಗೆ ಯಾವುದೇ ವಿಮರ್ಶೆಗಳಿಲ್ಲ.

## ಕೊಡುಗೆದಾರರು & ಡೆವಲಪರ್‌ಗಳು

“Sort Query Posts” ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್‌ವೇರ್ ಆಗಿದೆ. ಕೆಳಗಿನ ಜನರು ಈ ಪ್ಲಗಿನ್‌ಗೆ ಕೊಡುಗೆ
ನೀಡಿದ್ದಾರೆ.

ಕೊಡುಗೆದಾರರು

 *   [ Tubal ](https://profiles.wordpress.org/tubal/)

[“Sort Query Posts” ಅನ್ನು ನಿಮ್ಮ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ.](https://translate.wordpress.org/projects/wp-plugins/sort-query-posts)

### ಅಭಿವೃದ್ಧಿಯಲ್ಲಿ ಆಸಕ್ತಿ ಇದೆಯೇ?

[ಕೋಡ್ ಬ್ರೌಸ್ ಮಾಡಿ](https://plugins.trac.wordpress.org/browser/sort-query-posts/),
[SVN ರೆಪೊಸಿಟರಿ](https://plugins.svn.wordpress.org/sort-query-posts/) ಪರಿಶೀಲಿಸಿ, 
ಅಥವಾ [ಅಭಿವೃದ್ಧಿ ಲಾಗ್](https://plugins.trac.wordpress.org/log/sort-query-posts/) 
ಗೆ [RSS](https://plugins.trac.wordpress.org/log/sort-query-posts/?limit=100&mode=stop_on_copy&format=rss)
ಚಂದಾದಾರರಾಗಿ.

## Changelog

#### 1.1

 * Code refactored for improved performance. Updating is recommended.

## ಮೆಟಾ

 *  Version **1.1**
 *  ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಿದ್ದು **14 ವರ್ಷಗಳು ರ ಮುನ್ನ**
 *  ಸಕ್ರಿಯ ಸ್ಥಾಪನೆಗಳು **100+**
 *  ವರ್ಡ್ಪ್ರೆಸ್ ಆವೃತ್ತಿ ** 2.5 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  **3.4.2** ವರೆಗೆ ಪರೀಕ್ಷಿಸಲಾಗಿದೆ
 *  Language
 * [English (US)](https://wordpress.org/plugins/sort-query-posts/)
 * ಟ್ಯಾಗ್‌ಗಳು
 * [post](https://kn.wordpress.org/plugins/tags/post/)[query](https://kn.wordpress.org/plugins/tags/query/)
   [reorder](https://kn.wordpress.org/plugins/tags/reorder/)[sort](https://kn.wordpress.org/plugins/tags/sort/)
 *  [ಸುಧಾರಿತ ನೋಟ](https://kn.wordpress.org/plugins/sort-query-posts/advanced/)

## ರೇಟಿಂಗ್‌ಗಳು

 5 out of 5 stars.

 *  [  3 5-star reviews     ](https://wordpress.org/support/plugin/sort-query-posts/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/sort-query-posts/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/sort-query-posts/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/sort-query-posts/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/sort-query-posts/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/sort-query-posts/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/sort-query-posts/reviews/)

## ಕೊಡುಗೆದಾರರು

 *   [ Tubal ](https://profiles.wordpress.org/tubal/)

## ಬೆಂಬಲ

ಹೇಳಲು ಏನಾದರೂ ಸಿಕ್ಕಿದೆಯೇ? ಸಹಾಯ ಬೇಕೇ?

 [ಬೆಂಬಲ ವೇದಿಕೆಯನ್ನು ವೀಕ್ಷಿಸಿ](https://wordpress.org/support/plugin/sort-query-posts/)