I’m about to create parser which would be inserting new custom posts. So, it’s pretty simple global $user_ID; $new_post = array( 'post_title' => 'My New Post', 'post_content' => 'Lorem...
I have a custom post type named ‘tours’ and custom taxonomy named ‘tourtypes’ so i can categorize it into terms like ‘cultural tour’, ‘sports tour’ etc. I’m not the...
I want to create canonical permalinks for products and product types. I have the custom post types and custom taxonomy figured out, but I don’t know if its possible...
Bare with me. Firstly, here is my whole script for my featured slider articles: <div id="featured" class="<?php if ( $responsive ) echo 'flexslider' . $featured_auto_class; else echo 'et_cycle'; ?>">...
I’m just getting used to the WP Query and was hoping I could get some assistance on this. I’ve created a custom taxonomy (theme) and now want to display...
I’ve created a custom taxonomy called imagetags using the following code: // Register Custom Taxonomy function custom_imagetags_taxonomy() { $labels = array( 'name' => _x( 'Image Tags', 'Taxonomy General Name',...
I need to list(display) all thumbnails from my Custom Post Types in a page template based on product categories. For Example I have a Custom Category called “Art” and...
I have been trying to output content of all post-types (Posts, Pages and CPTs) based on a term of a custom taxonomy that they must share (meaning if they...
I’m trying to use the following code in functions.php in order to show a menu with categories (custom taxonomies actually). I simply want it to show active when on...
I have a taxonomy called Section and a Custom post type called Developments. What i need to achieve is a permalink on the taxonomy with custom post type prefixed:...