This allows to change filename, layout, pagination and other stuff for the DKPF plugin. //PDF…
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' );
