Skip to content

excerpt shortcode

//custom function
function create_shortcode_test() {    
	echo the_excerpt(); 
}
add_shortcode ( 'show_excerpt' , 'create_shortcode_test' );

Or you can just use the original function

add_shortcode( 'output_post_excerpt', 'get_the_excerpt' );

An den Anfang scrollen