No output from multiple terms in an array.
-
This is a great plugin, and it’s potentially the plugin I require due to it’s features, however I am running into a couple of issues.
The following PHP code is what I am am currently using to output my multiple taxonomy terms (or so I intended). The issue is that only the first term in the array is coming out (product-1 list not product-2 list). What am I missing here?
the_a_z_listing( array( 'post_type' => 'stores', 'tax_query' => array( array( 'taxonomy' => 'products-sold', 'field' => 'slug', 'terms' => array( 'product-1', 'product-2' ), ), ), ) ); ?>
The second issue I have come up against is when I have moved the a-z-listing-multi-column.example.php to the root theme file and renamed it as stated in the documentation I am not getting any results back at all, it’s as though the plugin no longer functions as A – Z letters at the top are no longer showing either.
- The topic ‘No output from multiple terms in an array.’ is closed to new replies.