Multiple excerpt lengths in WordPress theme

If you are a frequent user of wordpress then you must know what is excerpt and what you can do with excerpt. Excerpt is used as a post summery in wordpress. More precisely it display first few lines of the … Continue reading

Get Child of a parent category in wordpress

This article will show you how to get child categories of any specific category. Usually when you are coding a website for your client and you want to get post from specific category you just mentioned ID or name of … Continue reading

Get content of specific page in wordpress

When you are using wordpress CMS for your website, you mostly get post data using while loop on “page.php” or “post.php”. Now some time you want to get a data from specific page. You can use a built in feature … Continue reading

Recent posts from specific category

This post is for those people who want to get recent post of a specific category. You probably need this to show recent blog posts in side bar or home page. This tutorial is for intermediate users. If you are … Continue reading

Menu to display Child Pages using wp_list_pages()

Menu in any website sidebar is common thing. You can easily create a sidebar menu in wordpress using “wp-list-page”.  This is a wordpress default function to get titles of the pages in your wordpress website. we mostly use to get … Continue reading

Different Single template file of each category in wordpress

If you are not new to wordpress CMS. You must know single.php is one of the importnat file in theme files. “single.php” is used to display post of a category in wordpress. Mostly we use it to display recent blog … Continue reading

Get base url in wordpress

Base url is the landing page of any website.When you are designing a new theme for wordpress, you need different wordpress function references. Today in this article I will tell you that how you can get base url in wordpress. … Continue reading

Get images from post content in wordpress

When you want to display content of a post in wordpress, you can use just “the_content” in the loop to display content. Now there are some scenarios where you want to display only images of the post instead of text. … Continue reading

Add php page in wordpress

There are two types of php page available in wordpress for posting your content. One is “post.php” and other is “page.php”. There is a detail list of wordpress template files available here. Most of the time you have to play … Continue reading

wordpress basic template files

WordPress is one the most popular CMS (Content Management System) in the market. Mostly blogger prefer to use wordpress on their website. WordPress is user friendly and easy to use. Today I will tell some of the basics about wordpress … Continue reading