admin管理员组

文章数量:1125971

How do I register a shortcode to add the manual post excerpt anywhere within the same post? Does this shortcode already exist in WP?

Thanks!

How do I register a shortcode to add the manual post excerpt anywhere within the same post? Does this shortcode already exist in WP?

Thanks!

Share Improve this question asked Apr 26, 2019 at 16:46 auntieauntie 351 silver badge5 bronze badges 2
  • If we want to run this code with the program (Code Snippets), how do we do this? – user233657 Commented Jul 3, 2023 at 15:45
  • @user233657 you shouldn't post questions in the solutions box to other users questions. Code snippets support can help you, but 3rd party plugin questions are offtopic here – Tom J Nowell Commented Jul 3, 2023 at 17:02
Add a comment  | 

1 Answer 1

Reset to default 3

Just add this to your child theme's functions.php file:

add_shortcode( 'output_post_excerpt', 'get_the_excerpt' );

Then use [output_post_excerpt]

本文标签: Retrieving post excerpt as a shortcode