Skip to content

Instantly share code, notes, and snippets.

@ANIRUDDHBHAT
Forked from danielmcclure/functions.php
Created May 12, 2022 19:48
Show Gist options
  • Save ANIRUDDHBHAT/d92fde9601b8603287a1e4ea0bfef583 to your computer and use it in GitHub Desktop.
Save ANIRUDDHBHAT/d92fde9601b8603287a1e4ea0bfef583 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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment