Inserting shortcode is blanking excerpt - any ideas?
I wrapped a shortcode around my post content and I have noticed it is making the excerpt blank on archive pages instead of auto generating one from the_content/post. At a loss as to what is causing it or what to try. Its not even outputting the shortcode in the_excerpt
its just blank. I would have thought if there was going to be a problem it would have been the shortcode appearing as part of the_excerpt
but its just blank full stop. All my predefined shortcode does is wrap some complex HTML5 tags around the content which an author would make mistakes doing on a regular basis for consistency in certain situations so its not a complex shortcode. My post is outputting perfectly with the_content
. As soon as I remove the shortcode it works again. If I put the shortcodes back in and set a manual excerpt it works so its only when it has to auto generate the_excerpt
from a post wrapped in this shortcode. Appreciate any ideas if anyone else has experienced something similar as I am at a loss to explain it or how to resolve.
Many thanks.
In simple/stripped back terms im wrapping for example this:
add_shortcode( 'ARTICLE_SECTION', 'trg_shortcode_article_section');
function trg_shortcode_article_section_run( $content ) {
global $shortcode_tags;
// Backup current registered shortcodes and clear them all out
$orig_shortcode_tags = $shortcode_tags;
remove_all_shortcodes();
add_shortcode( 'ARTICLE_SECTION', 'trg_shortcode_article_section' );
// Do the shortcode (only the one above is registered)
$content = do_shortcode( $content );
// Put the original shortcodes back
$shortcode_tags = $orig_shortcode_tags;
return $content;
}
// actual shortcode function
function trg_shortcode_article_section( $atts, $content = null ) {
$atts = array();
$output = 'section';
$output .= $content . '/section';
return $output;
}
add_filter( 'the_content', 'trg_shortcode_article_section_run', 7 );
In partial loop:
p?=trg_excerpt_article()?/p
Ive put in to debug early right at start before anything else just:
function trg_excerpt_article(){
echo '!-- excerpt - ' . get_the_excerpt() . ' --';
}
That returns blank as well.