Skip to content

Instantly share code, notes, and snippets.

@danielmcclure
Last active May 12, 2022 19:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danielmcclure/20ca2a1e080ce0f9b95f652fa1f32a36 to your computer and use it in GitHub Desktop.
Save danielmcclure/20ca2a1e080ce0f9b95f652fa1f32a36 to your computer and use it in GitHub Desktop.
Enable excerpts for LearnDash Lessons
<?php
/**
* Enable excerpts for LearnDash Lessons
*/
function add_excerpts_to_ld_lessons() {
add_post_type_support( 'sfwd-lessons', 'excerpt' );
}
add_action( 'init', 'add_excerpts_to_ld_lessons' );
@ANIRUDDHBHAT
Copy link

Thanks a lot for this beautiful snippet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment