Adding shortcode inside Visual Composer raw HTML [closed]
When you look at how do_shortcode() actually works, then it’s this: do_shortcode( $content ) Where $content is defined as the following: (string) Content to search for shortcodes What you are trying to do is to echo what the shortcode does, leading to a false assumption. There is no magic function discovering your shortcode. The shortcode … Read more