From 7b70339f1505fc0ceefbb13dc263f21dda67242f Mon Sep 17 00:00:00 2001 From: kprovance Date: Mon, 18 Nov 2013 00:07:23 -0500 Subject: [PATCH] Update framework.php This enables the array within the arg array to proper set the arguments into the call. --- framework.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework.php b/framework.php index 5ffaccf..5823872 100755 --- a/framework.php +++ b/framework.php @@ -512,7 +512,7 @@ function get_wordpress_data($type = false, $args = array()) { if (empty($args)) { $args = array(); } - $terms = get_terms($taxonomies, $args); // this will get nothing + $terms = get_terms($taxonomies, $args['args']); // this will get nothing if (!empty($terms)) { foreach ( $terms as $term ) { $data[$term->term_id] = $term->name;