MickeyKay / better-font-awesome

[WordPress] A WordPress plugin that allows you to easily integrate the latest version of FontAwesome.
GNU General Public License v2.0
10 stars 7 forks source link

Huge set of data inside $shortcode_tags global #9

Open erikjoling opened 8 years ago

erikjoling commented 8 years ago

Hi Mickey,

Checkout the $shortcode_tags global variable.

<?php
        global $shortcode_tags;
        echo '<pre>'; 
        print_r($shortcode_tags); 
        echo '</pre>';
?>

There are almost 3000 lines of bfa-code in there.

I'm guessing it impacts performance quite a bit. Is it possible to trim this down a bit?