So, it looks like the plugin I’d like to use in my excerpt only provides a shortcode. I’m curious what the embed code for the default player is, as I’m stumbling to find this as well.
I’ve also found some documentation to enable shortcodes in the excerpt by adding a line to the functions.php file to the current theme (see here: https://envato.com/blog/wordpress-excerpts/). I’ve done this to my installation of the podcast theme, but the shortcodes are not parsed:
/var/html/wordpress/wp-content/themes/podcast/functions.php
/* Custom Excerpt Length
==================================== */
function new_excerpt_length($length) {
return 45;
}
add_filter('excerpt_length', 'new_excerpt_length');
add_filter('the_excerpt', 'do_shortcode');
add_filter('the_excerpt', 'shortcode_unautop');
-
This reply was modified 4 years, 7 months ago by stevesanda.