/**
  * The MLA Term List shortcode.
  *
  * Compatibility shim for MLAShortcode_Support::mla_term_list_shortcode
  *
  * @since 2.25
  *
  * @param array $attr Attributes of the shortcode.
  * @param string $content Optional content for enclosing shortcodes
  *
  * @return string HTML content to display the tag cloud.
  */
 public static function mla_term_list_shortcode($attr, $content = NULL)
 {
     if (!class_exists('MLAShortcode_Support')) {
         require_once MLA_PLUGIN_PATH . 'includes/class-mla-shortcode-support.php';
     }
     return MLAShortcode_Support::mla_term_list_shortcode($attr, $content);
 }