Tagged Questions
0
votes
0answers
41 views
How to create a structure in wordpress for parent and child relationships contents
Could any one tell me how to do the following structure in wordpress whether using taxonomy, term , post or page
Example :
Parent
A -- Title -- Description
B -- Title -- Description
C -- Title -- ...
0
votes
1answer
59 views
wp_dropdown_pages with tax_query clause
I'm display a dropdown list of custom post types in wordpress. This first block of code uses WP_Query
$houseQuery = new WP_Query(
array(
'post_type' => 'house',
'order' ...
0
votes
1answer
44 views
Return selected categories only in custom page meta box?
I have a custom meta box added to the Page edit screen. I also have categories turned on for Pages.
I'm using get_categories($post->ID); to retrieve a list of categories, as you would in a page ...
0
votes
1answer
34 views
Can I connect a page to a taxonomy?
I'm creating a website for a soccer club. It has news, reports and media custom post types. There you can connect the post to the Team taxonomy. But I also need to have a page for that team where I ...
1
vote
1answer
246 views
meta_key & meta_value not working with get_pages and custom taxonomy
I'm trying to use custom taxonomy with pages. Basically a page has a "relevance" taxonomy, depicting who the page is relevant for. The pages are created in a hierarchy based on the departmental ...
0
votes
1answer
266 views
What is the current page's Taxonomy?
I need to be able to switch between the current page taxonomy so I can load in the appropriate menu:
$current_tax = 'need to get this from somewhere';
switch ($current_tax) {
case 'tax1':
...
0
votes
1answer
88 views
Taxonomies on Pages with Custom Formatting
guys,
I'm fairly new to this so thanks in advance for your help and patience.
So I've recently started using the WPAlchemy class on my site and it's really been an amazing time-saver. The main thing ...
1
vote
1answer
806 views
Priority for Categories, Tags, Taxonomies, Posts, Pages and Custom Posts with same url
I have been reading dozens of posts and honestly, I have many doubts on how this work. Furthermore, I think that with WP3.1 more issues have been added here because I am having even more problems now ...