Would you like to findow do I reorganize WordPress posts? 

For software with its roots firmly anchored in the writing world, the WordPress users are often surprised by the lack of what appears to be obvious functionality. A classic example of the lack of functionality is the organization of posts in WordPress.

In this tutorial, we will show you how to solve this problem by offering links to tutorials.

Discover in addition How to allow users to filter articles and pages

However, before we get into all of this, let's talk a bit about this feature.

How WordPress manages the organization of articles

The history of how WordPress handles the organization of posts is not particularly long and complicated. Let's say, for our own purposes, we decided to turn our ' A Tale of Two Cities By Charles Dickens in a series of blog posts.

Stay legal by discovering 6 WordPress plugins to ensure GDPR compliance of a blog

How to rearrange WordPress articles into 2 methods

As you can see below, we have the ability to sort them by title or by date:

Unfortunately, even this basic feature is not available on the "frontend". Here, items are simply sorted in chronological order, by default, with no filter option to adjust them:

For some, it's a real disaster for the user experience. If we're trying to encourage people to read a linear story, it would be very difficult to ask them to start reading from the end.

By default, WordPress offers only two solutions to fix it:

  • Use featured articles.
  • In retrospect, start changing the dates of the articles to force the order we want.

The first option is unfortunately insufficient in terms of the necessary control. The second becomes quickly difficult to manage when we have a large content. It is also potentially a disadvantage for websites where the date is an essential element.

Discover How to backup your WordPress blog with the BackUpWordPress plugin and secure your content

So, in what follows, I'll show you how to rearrange articles on WordPress.

How to rearrange articles on WordPress

One of the benefits of WordPress is its flexibility. With that in mind, we're going to offer you two ways to reorganize your blog posts.

1 Option: How to Manually Organize Articles

The great thing about WordPress is that if a WordPress item does not suit you, you can always change that.

What we are going to do will cause you to change the source code of your WordPress theme. You should therefore make a backup in case where an accident happens!

We showed you in one of our previous tutorials, how to create a WordPress plugin. You will need to use it because you will have to add a custom code.

function change_query_order( $query ) {
if ( $query-is_home() && $query-is_main_query() ) {
$query-set( 'orderby', 'title' );
$query-set( 'order', 'ASC' );
}
}
add_action( 'pre_get_posts', 'change_query_order' );

This code will organize articles by titles in ascending order. You will be able to play with the parameters to display the articles in descending order or according to the identifiers, by using " DESC For decreasing in the method set ('order'), and "title" to filter according to the titles or "ID" to filter according to the identifiers.

2 Option: Use a specific organization plugin

Since we are working on WordPress, there are of course also plugins that address this problem. The one we will use is called " Post Order Types ":

post order wordpress plugin

Although it offers the features we need, in addition it is regularly updated, it enjoys heavy usage of over 500,000 installations, and equally high positive ratings. There's also a more feature-rich version which costs $ 35 and works with the Custom Post Type.

Installation is child's play, then you will have access to the settings page after activating the plugin:

Discover How to install a plugin in WordPress

Configuring the plugin

The basic options you'll see are pretty straightforward, with several helpful links that offer sample code to places you might need to jump in:

While the options might seem overwhelming, using the plugin is incredibly straightforward and works just as you would expect.

Discover by the way How to display the date of an article update

Once activated, go to " Articles> All Articles », And you will be free to select individual articles and rearrange them in the order you want. This will be done by drag and drop.

Organization of demonstration articles

Here ! you can now rearrange your 2 items that will be your choice.

Discover also some themes and premium WordPress plugins  

You can also use other WordPress plugins to give a modern appearance and to optimize the handling of your blog or website.

We offer here some WordPress plugins premium that will help you do that.

1. WPML

WPML is a WordPress Plugin high-end translation premium that allows you to translate your blog posts and website pages. It is advisable to make a full backup of your website before installing it.

Wpml wordpress multilingual

Unlike most other translation plugins, WPML is compatible with most major themes and WordPress plugins. So you won't need to touch the code orappearance of your website for this to work. 

If you need help with human translation, WPML connects you to major translation services. he Supports SEO and works seamlessly with the most popular SEO plugins. They offer 3 premium plans based on the number of features. Each premium plan offers unlimited use on the website. This is one of the oldest and most reliable WordPress translation plugins for creating your website multilingual.

Download Demo | Web hosting

2. Ultimate Food Menu Addon

Le WordPress Plugin premium Ultimate Food Menu Addon is an extension of the famous plugin WPBakery. It will help you create a restaurant menu on any website.

Ultimate Food menu addon for wpbakery page builder

And among the Visual Composer extensions that target this niche, it remains one of the best.

As features it offers among others: more 14 models delivered in a native way, several possibilities of customization, the multilingual support, the responsive layout, regular updates and lifetime, excellent SEO performance and much more.

Download | Demo | Web hosting

3. Ajax Translator Revolution

Translator Revolution is a plugin WordPress premium friendly and highly customizable translation software. It is simple enough to get started, but powerful enough to create highly personalized translation configurations.

Ajax translator revolution wordpress plugin

This is a machine translation plugin, which means you won't have to spend countless hours manually translating your WordPress blog. It might take a minute, yes a single minute, to have a website translated into multiple languages!

Le WordPress Plugin Translator Revolution supports a total of 91 languages.

Download | Demo | Web hosting

Recommended Resources

Find out about other recommended resources to help you build and manage your website.

Conclusion

Here is ! That's all for this tutorial, I hope it will help you better organize the articles on your WordPress blog. If you liked it, don't hesitate to share with your friends on your favorite social networks

However, you will also be able to consult our resources, if you need more elements to carry out your projects of creation of Internet sites, by consulting our guide on the WordPress blog creation.

But, in the meantime, tell us about your Comments and suggestions in the dedicated section.

...