Tagged Questions
-1
votes
1answer
35 views
Getting taxonomies specific to categories
I have categories set up for car manufacturers.
I have 4 custom taxonomies that are also set up: color, starburst, offer_type, and logo_count.
Each post I upload to my wordpress has values for all 4 ...
0
votes
2answers
1k views
Exclude current post ID from loop in sidepbar.php
Currently all the below bit of code is doing is showing 3 random posts from the same category that the current page resides in. So if the current page falls in the artists category, for example, show ...
0
votes
1answer
170 views
why is the current page title being output?
this is in my sidebar.php file, which is pulled in in the header.php file (is this bad practice?). anyways, the last item in the list is the current page title, despite my query_posts with an args of ...
0
votes
1answer
54 views
Issue with sidebar widgets not showing when I do custom queries
I'm having issues with this. I have 2 while loops, each getting different custom post types. They both work fine, except, my sidebar content i.e. widgets, is not appearing. I think this is because ...
0
votes
1answer
375 views
Latest 5 post excerpts from 5 different authors in Sidebar
I'm attempting to display the latest 5 post excerpts from 5 different authors in my blog sidebar. Below is the code I'm using which I tweaked from this thread: Find most recent authors
So far, I've ...
0
votes
2answers
322 views
Including post data in a sidebar occurring outside of and before the Loop
I'm having problems setting up a single WordPress template page to display post data outside of the Loop. The page has a left sidebar in which I want to display post meta data, tags and navigation ...
0
votes
1answer
518 views
Custom Post Type Query for Sidebar Doesn't Work on Front Page
Interesting issue here.
I have this:
$args=array(
'meta_key'=>'_simple_fields_fieldGroupID_1_fieldID_8_numInSet_0',
'post_type' => 'stores',
'post_status' => 'publish',
...