How to parse shortcodes within returned content
Here’s the code given by the VC team. And it works. // display content in grid add_filter( ‘vc_grid_item_shortcodes’, ‘my_module_add_grid_shortcodes’ ); function my_module_add_grid_shortcodes( $shortcodes ) { $shortcodes[‘vc_post_content’] = array( ‘name’ => __( ‘Post content’, ‘fluidtopics’ ), ‘base’ => ‘vc_post_content’, ‘category’ => __( ‘Content’, ‘fluidtopics’ ), ‘description’ => __( ‘Show current post content’, ‘fluidtopics’ ), ‘post_type’ => … Read more