List/Grid

Tag Archives: wordpress

How to create basic wordpress plugin

How to create basic wordpress plugin

There are many things that you can do with your wordpress plugin to enhance your website that can also be used by other website owners. In this post we will… Read more »

List of SEO Plug-ins for WordPress Websites

List of SEO Plug-ins for WordPress Websites

WordPress is web software you can use to create a beautiful website or blog.It is a highly customizable platform that can be modified to suit your needs. Plug-ins can also… Read more »

How to list all posts in WordPress

To show all published posts in your WordPress blog, you first need to create a template with the following code: After you save this template in your themes folder, go… Read more »

Manually Upgrade WordPress

You should always upgrade your wordpress version to the latest to get most out of it. To upgrade your wordpress manually, here are some steps: 1. Backup your database. You… Read more »

How to create and use wordpress page templates

Page templates allow you to creates custom pages, eg: creating a page to display infos about the author or any random php code that you wish or anything else. A… Read more »

Using Custom Fields for post thumbnail – WordPress

There are couple of ways you can show thumbnail of a post in your WordPress blog. First thing you need to do is create a custom field under add post… Read more »

See post from any category – WordPress

Here is how to show posts from any particular category in WordPress:

Get post author name – WordPress

While working with wordpress, you might want to do something with the post author. Here is how to get the author name: $postAuthor = $post->post_author; //$postAuthor have the Author Id… 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 »