As we know wordpress is the most popular blogging CMS today. Millions of people use it as their blogging platform. Want to make your wordpress theme more visually appealing?
In this list we provide some useful wordpress plugins and some short snippets, you can easily apply to your wordpress theme and make it more impressive.
This is a great way to make your theme more visually appealing. By using post excerpt on your site homepage, you can simply show a mini description of your article.
The benefit of implementing this technique is that it decreases page load time and it increases the pageview count.
Read: How to Show Post Excerpt in WordPress.
It’s another great way to make your theme more usable and effective. If your theme doesn’t support post thumbnails here’s how to add them.
Add the below code in your theme function.php file:
add_theme_support('post-thumbnails');
This code will enable theme support for both posts and pages. So now you will be able to see an option in your dashboard. But it will not display in your themes because we have not added the code in the theme yet.
You can display the thumbnail anywhere inside the loop by using the code:
<?php the_post_thumbnail(); ?>
3. Display Related and Popular Posts With Thumbnails
Images speaks thousands words. So you’ll have to show your related and popular post with thumbnail.

Try the wordpress plugins for a quick implementation of related post thumbnails.
Read: 5 Best Related Post with Thumbnail WordPress Plugins.
4. Pagination
Wp-pagenavi a wordpress plugin provides the wp_pagenavi() template tag which generates fancy pagination links.
![]()
After activating this plugin the only thing you have to do is open index.php (or search.php, archive.php, tag.php) and change the following code:
<div class="navigation">
<div class="alignleft"><?php next_posts_link(‘« Older Entries’) ?></div>
<div class="alignright"><?php previous_posts_link(‘Newer Entries’) ?></div>
</div>
with the following one:
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>
Hope you like it. Have any suggestion? Please share with us via comment section.
Google+
My theme is a premium theme. So it comes with all these features.Anyway nice helpful article for those using free wp themes
Hello Manoj, This was a superb post given by you. I was searching for a long time to mke my website look perfect and there I found you. These 4 ways are very beneficial.
Thanks for this wonderful idea, before reading this post, i usually don’t use thumbnails or use auto thumbnails plugin to do so. now it can be easily done by adding a simple code in function.php
thnx kshitij for leaving your valuable comment, keep visiting for getting more wordpress tweaks.
Manoj Rawal
Thank! I was looking for adding page navigation to my blog.
thnx for comment…,,,,,,,,,,,,,,,