Ejemplo n.º 1
0
 /**
  * Retrieve the terms in one or more taxonomies.
  *
  * Compatibility shim for MLAShortcode_Support::mla_get_terms
  *
  * @since 1.60
  *
  * @param	array	taxonomies to search and query parameters
  *
  * @return	array	array of term objects, empty if none found
  */
 public static function mla_get_terms($attr)
 {
     if (!class_exists('MLAShortcode_Support')) {
         require_once MLA_PLUGIN_PATH . 'includes/class-mla-shortcode-support.php';
     }
     return MLAShortcode_Support::mla_get_terms($attr);
 }