[embed] shortcode
-
The [embed] shortcode in the content doesn’t work.
The problem is with the code on line 431 in
event-list/includes/sc_event-list.php.$content = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url);The
do_shortcodejust removes the [embed] shortcode.I don’t if it’s a proper fix, but if I add
$GLOBALS['wp_embed']->run_shortcodebefore thedo_shortcodecall, the embedded video shows up.$content = $event->truncate(do_shortcode($GLOBALS['wp_embed']->run_shortcode(wpautop($content))), $a['content_length'], $this->single_event, true, $truncate_url);
The topic ‘[embed] shortcode’ is closed to new replies.