Adding shortcode to a slider`s text
-
Hello,
I’m trying to add a shortcode that allows html entities (unordered list) in the slider’s text. I’ve past this code to the functions.php (found thanks to customizr forum):add_filter('tc_slide_text_length', 'my_tc_slide_text_length'); function my_tc_slide_text_length(){ return 500; /*change this value to suit your needs*/ } add_filter('tc_slider_display', 'do_my_shortcode'); function do_my_shortcode($html){ return do_shortcode(html_entity_decode($html)); }
Then I was trying to figure out how to add the shortcode to the slider’s text without any success for now.
Thanks a lot for help.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Adding shortcode to a slider`s text’ is closed to new replies.