Tagged Questions
0
votes
1answer
132 views
array_pop() expects array, boolean given for $event_type_term ->slug
I have the following function I wrote …
add_filter('post_type_link', 'events_permalink_structure', 10, 4);
function events_permalink_structure($post_link, $post, $leavename, $sample) {
if ( ...
0
votes
2answers
728 views
Query posts using custom taxonomy and selected terms
I'm not able to use array for the terms in the following query, only a single term:
$args=array(
'facts' => 'information', //taxonomy:facts and term:information
'post_type' => ...
0
votes
1answer
773 views
tax_query operator woes
I am trying to filter posts by multiple taxonomies. My code below works great, but their is one thing I can't quite figure out. When I filter the posts it seems that they only show the posts that ...