Exemplo n.º 1
0
 /**
  * The MLA Tag Cloud shortcode.
  *
  * Compatibility shim for MLAShortcode_Support::mla_gallery_shortcode
  *
  * @since 1.60
  *
  * @param array $attr Attributes of the shortcode.
  *
  * @return string HTML content to display the tag cloud.
  */
 public static function mla_tag_cloud_shortcode($attr)
 {
     if (!class_exists('MLAShortcode_Support')) {
         require_once MLA_PLUGIN_PATH . 'includes/class-mla-shortcode-support.php';
     }
     return MLAShortcode_Support::mla_tag_cloud_shortcode($attr);
 }