CSIS-iLab / aerospace_wp

WordPress site for the Aerospace site.
MIT License
0 stars 3 forks source link

Fix shortcode issue on front page #85

Closed jdromero88 closed 2 months ago

jdromero88 commented 2 months ago

I had to write a custom excerpt function to be able to make this work. I got the inspo from here.

I also tried this in the shortcodees.php but didn't work.

add_filter('the_excerpt', 'shortcode_unautop');
add_filter('the_excerpt', 'do_shortcode');
add_filter('get_the_excerpt', 'shortcode_unautop');
add_filter('get_the_excerpt', 'do_shortcode');
jdromero88 commented 2 months ago

Closes #84