List/Grid

Tag Archives: tips

What Could be the “Perfect” Permalink Structure for Your Blogs ?

Permalinks are the addresses of your blog content. Permalink stands for “permanent links”. Visitor and Search Engine will verify your posts by their permalinks. Search engine rankings also depends a… Read more »

WordPress – Show Related posts based on tags and category

Instead of using any plugin to show related posts based on the category, you can use this small piece of code to show post related to the category of the… Read more »

WordPress – Get category name in sidebar

I wanted to add some code in the sidebar depending on the category name of the post and also display the category name. $categories = get_the_category($post->ID); if ($categories) { $category_ids… Read more »

WordPress – Show posts tricks

While creating a blog using wordpress, you might require this quick tips that are very important and used quite often. Grab Category name < ?php $category = get_the_category(); echo $category[0]->cat_name;… Read more »

Display wordpress categories in different format

When it comes to display all wordpress categories on your blog, the only option that comes is a list ( ). Thus if you want to show all categories in… Read more »