The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
142 views

Custom taxonomies making WP very slow - Way to fix?

I've set up three custom taxonomies within my theme for attachment post types within Wordpress 3.5.1. One taxonomy is non-hierarchical (i.e. tags) and has about 800 terms in it. (I'm using WP to build ...
0
votes
2answers
179 views

Tax Query trouble

I can't seem to figure this out. The following query works: $xxxx = new WP_Query(array( 'listset' => 'homepage', 'meta_query' => array( array ( 'key' => 'show_home', ...
0
votes
1answer
24 views

How to get multiple Taxonomies not All Taxonomies?

I am building a movie site, here is the codes to get the taxonomies function display_post_taxonomies( $content ) { if( is_single() ) { $args = array( 'public' => true, '_builtin' => ...
0
votes
1answer
121 views

Get terms in hierarchical taxonomy which are associated with page and are children of a parent term

I have a hierarchical custom taxonomy ("photos"), with 3 parent terms ("color", "location", "year"). Each parent term has several children terms. I have associated the "photos" taxonomy with pages and ...
0
votes
1answer
89 views

Wordpress Taxonomy Menu

I have got the following simple code. <ul id="filter"><?php echo '<li class="active"><a href="#" class="all">All</a></li>'; if ( $count > 0 ) { ...
0
votes
1answer
47 views

Getting the correct value for a post

I have a taxonomy called state which lists all the states. When I create a post I want to select the taxonomy, but also have the name of the state automatically captured in a custom field as well. ...
1
vote
0answers
115 views

Using multiple taxonomies to sort Custom Posts

I have a post type that includes a taxonomy for (1) location and (2) a day of the week. I'm using the first taxonomy to sort the posts into groups. Here's the loop I'm using: <?php $terms = ...
1
vote
0answers
49 views

can these 3 queries be re-written as 1 query?

I am creating a Dentist directory site, and I have a taxonomy archive page which requires particular grouping and sorting (see below). So far I have only been able to achieve this using 3 WP_Querys ...
1
vote
0answers
106 views

Query most popular terms by taxonomy over 2 week period

I have written SQL for a query that pulls the most used taxonomy terms for selected taxonomies that are published, do not have a parent post are not in a comma separated list over the past two weeks ...
0
votes
0answers
28 views

Doesn´t get right information from wp_Query in wordpress using Easy Content Types

Have problems to sort out right information using WP_Query together with Easy Content Types. My query looks like this <?php $query = new WP_Query( array( 'post_type' => 'buildarea', ...
0
votes
0answers
23 views

Altering adjacent_image_link() for attachment pages

I'm attempting to repurpose adjacent_image_link() for use with attachment pages. I have galleries that are based on an attachment taxonomy ("image-gallery") and multiple terms (the specific gallery ...
0
votes
0answers
64 views

How to get Next or Previous Image on attachment page within same taxonomy term

I'm trying to set up non-conventional image galleries for a photography website using taxonomy pages instead of traditional pages which employ the [gallery] shortcode. The taxonomy ("image-gallery") ...
0
votes
0answers
79 views

Combine Two Plugins to Filter by Custom Taxonomy and Custom Field

I'd like to give my users the possibility to filter the posts by Categories, Tags, and Custom Field values. Search/filter form would be multiple fields: Field One City:[categories with a parent ...
0
votes
0answers
33 views

Retrieving Categories of posts which have a custom Taxonomy

I am working on an event management WordPress site which has multiple taxonomies (Photographer, Event Manager, Decor, etc). I want to create Taxonomy pages for each of these taxonomy (this is the ...