21/04/2015 by Nitesh

How to Setup Online Reservation Form on your WordPress Website

Today, WordPress is one of the widely used CMS for creating blogs as well as websites across the world. Currently around 23% of websites in the world are powered by the WordPress Platform. This means that almost business of every niche is using WordPress for their website. Today, I will be reviewing a plugin that…

Continue Reading »

26/07/2014 by Nitesh

Display List of Custom Taxonomy Associated With a Post

Friends, In our last post, we saw how can we get all posts from multiple Post Types in WordPress. This post explains how we can display the list of custom taxonomy associated with a post in WordPress. To do this, we will use the following code – < ?php the_terms( $pid, 'taxonomy', '', ' /...

Continue Reading »

24/07/2014 by Nitesh

How To Get All Posts From Multiple Post Types in WordPress

Friends, In our last post, we saw how can we get all posts from a specific custom post type in WordPress. This post explains how can you get all posts form multiple post types in WordPress. Let us assume, we have 3 different post types named “cats”,”dogs’ and “rats” and we want to display all…

Continue Reading »

06/06/2014 by Nitesh

How To Get All Posts of a Specific Custom Post Type in WordPress

Friends, In our last post, we saw how can we get a list of all custom post types registered in our WordPress installation. In this post, we will see how we can get a list of all posts of a specific custom post type in WordPress. This may come handy when you are creating an…

Continue Reading »

05/06/2014 by Nitesh

How To Get All Custom Post Types in WordPress

Friends, WordPress allows users creating Custom Post Types to extend the WordPress functionality more than just a blogging platform. This post will explain how you can list all the custom post types registered with your WordPress installation by different plugins/theme. $args = array( ‘public’ => ‘true’, ‘_builtin’=>false ); $terms = get_post_types($args); foreach($terms as $term) {…

Continue Reading »

1 2