DEV Community

Cover image for Display the Most Viewed Posts - P1 - using MB Views
WP Meta Box Plugin
WP Meta Box Plugin

Posted on

Display the Most Viewed Posts - P1 - using MB Views

Choosing to showcase the most viewed posts on the home page is a way to attract customers easier. Let's see how to do it using Meta Box **along with the **MB Views. I'll take the restaurant as a demo for this practice.

Example of displaying the most viewed posts

Video Version

https://youtu.be/JEph7bhDhm8

Before Getting Started

There is something we need to make clear first:

Similar to the previous tutorials about the restaurants, we also create a custom post type named Restaurants and each restaurant is a post of that post type.

Beside displaying the default information of posts like title and feature image, which are the name and the image for restaurants, you may want to display some extra information. I also take some information about address, voucher, and logo for example. They will be saved in custom fields of the post.

Here are the tools we need for this practice:

Since we're going to display the most viewed restaurants in this post, we'll use a third-party plugin, Post Views Counter. The name says it all. This is to count the post views.

Moreover, we'll use Gutenberg only. But if you use any page builder, you can also follow this tutorial.

Step 1: Create a New Custom Post Type

Go to Meta Box > Post Types to create a new post type for the restaurants.

Create a new custom post type

Step 2: Create Custom Fields

Each restaurant may have extra information saved in custom fields, so go to Meta Box > Custom Fields and create them.

Create custom fields

After creating all the needed fields, go to the Settings tab > Location > choose Post Type as the Restaurant post type that we've just created to apply the custom fields to it.

Set Location for the created fields

In the post editor, you will see all of the newly created custom fields.

Newly created custom fields in the post editor

Step 3: Set Up to Count the Posts View

Normally, there is no information about the posts' view available in WordPress as default. We must do it on our own. So, just install the Post Views Counter plugin, then go to Settings > Post Views Counter and tick the box of the post type you want to count the posts view.

Set up to count the post views

Right after that, you can see the view numbers of each restaurant appear. Based on these numbers, we'll choose which restaurant has the most views and display it in the section.

Choose the most viewed restaurant and display it in the section

Step 4: Create a Template for the Section

In this tutorial, I'll use MB Views, an extension of Meta Box, to create a template for this section. Whether you use page builders or not, you can still create templates in this way.

Go to Meta Box > Views to create a new template. In the Template tab, add some code to display the restaurant's information.


{% set args = { post_type: 'restaurant', posts_per_page: 6, orderby: 'post_views', order: 'DESC' } %}

{% set posts = mb.get_posts( args ) %}

{% for post in posts %}

........

{% endfor %}

Enter fullscreen mode Exit fullscreen mode

Explanation:

  • {% set args = { post_type: 'restaurant'} %}: is to declare the args variable to get all the posts from the Restaurants post type.
  • posts_per_page: 6: is used to limit the number of posts. You can change the number "6" to any number you want.
  • orderby: 'post_views': is to set the order of the post by the posts view.
  • {% set posts = mb.get_posts( args ) %}: is to declare the post variable to admit the return value of the args variable.
  • {% for post in posts %}: this loop helps to list the posts.

Then, insert fields which we want to get the data into the loop.

To get the restaurant image, which is the featured image, choose the Post thumbnail option.

Choose Post Thumbnail option to get the restaurant image

We just need to insert each field in turn. It includes the default fields such as Post thumbnail like we just got above or Post title, or even custom fields like Address, Logo, and Voucher.

After getting all the restaurant information, scroll down to the Settings section of the view, set the type of this view as Shortcode.

Set the type of this view as Shortcode

When publishing, a shortcode is generated. Just paste it to anywhere you want to display this section.

Step 5: Add the Section to the Homepage

As I said before, whether we use page builders like Elementor, Brick Builder, Zion Builder, etc, or not, we can use the shortcode generated by MB Views. Just insert it to the place you want on the page.

With the page using Gutenberg for example, add the Shortcode block then paste the shortcode inside.

Add the shortcode block then paste the shortcode inside

Then, you'll see the information of the most viewed restaurants.

The information of the most viewed restaurants is obtained

For other page builders, you do likewise and you'll get the same result.

Step 6: Style the Section

Back to the Views, let's edit the template to style the section.

First, add some div tags into this template.

Add some div tags into the template

Then go to the CSS tab of the view and add some code.

Add some CSS code

This code is available on GitHub, so you can refer to it for more details.

Then you'll see a new look of the section. No matter which page builder you use, you'll see the new appearance.

The final result after styling

Last Words

With MB Views, it's a very convenient and quick way to display the most viewed restaurants section anywhere on your site no matter what which theme or builders you are using. Furthermore, whenever you change the page design, the section will be not affected. Let's try it and enjoy!

---The publication at Meta Box---

Top comments (0)