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 »

06/05/2014 by Nitesh

How To Implement Back To Top Feature in Html/Asp.Net/PhP

Friends, In many websites having long contents we have seen a “Back To Top” or “Scroll To Top” button when clicked takes you to the top of the webpage. We see this kind of feature normally on the product listing pages of e-commerce websites. Today in this post we will implement the same feature in…

Continue Reading »

1 2 3