Tagged Questions
0
votes
1answer
123 views
Get page by template?
I'm in a complicated situation. I'll try to explain it as easy as possible.
Imagine the following pages:
Page 1
Page 2
Subpage 1
Subpage 2
Subpage 3
Each subpage of page 2 lists posts from a ...
0
votes
1answer
29 views
Page for custom taxonomy
I'm a newbie in WordPress and I've just created a new custom-taxonomy called categories under a custom post type called arts. Is there a way I can create a custom page to display the 'categories's ...
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 ...
2
votes
1answer
818 views
Multiple portfolios with one custom post type?
I wonder what's the right way of creating portfolio website (with as many portfolio pages I want). Usually I create page template that displays posts with category = Portfolio or with posts from ...
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 ...
0
votes
1answer
581 views
register_taxonomy for both 'Post' & 'Page'
I'm using following code to register new taxonomy for WP-Post.
function qc22_build_taxonomies(){
register_taxonomy(__( "fullscreen-tags" ), array(__( "fullscreen" )), array("hierarchical" ...
3
votes
2answers
634 views
TV Show database - Best way for structuring it?
I want to make a TV Show database in Wordpress that has this URL format:
/tvshows/friends/01/12/
/tvshows/ would list all series
/tvshows/friends/ would list all the seasons available for Friends ...
2
votes
1answer
108 views
Is it possible to use pages to apply static content to each taxonomy level?
I'm thinking of using a taxonomy archive template to list out my taxonomies and entries (I'm using a hierarchical structure) and then combining this with the WordPress pages module to apply static ...
1
vote
2answers
367 views
Should I use custom taxonomy or custom post type
I've recently taken on a project from a client of mine, after a lot of persuasion I've managed to finally get the website under some kind of CMS. I'm pretty new to Wordpress I've come from an ...
2
votes
1answer
566 views
Page queried instead of a custom taxonomy
When I try to get an archive for a custom taxonomy, WP searches for a page and doesn’t find anything.
The Setup
My code from the functions.php:
add_action( 'init', 'register_store_taxonomy' );
...
1
vote
1answer
167 views
Making pages also serve as taxonomies? Or give full pages to taxonomies?
I run a video game news blog. When my staff writes a news article or a review, I would like them to be able to "assign" that post to a game (if applicable), so then I could have the single.php ...