Home › Support Forums › Theme Support › Enlightenment › Portfolio excerpts › Reply To: Portfolio excerpts
Daniel Tara
Keymaster
This code should display excerpts below the post titles for projects:
add_action( 'enlightenment_before_entry', 'enlightenment_project_excerpts', 6 ); function enlightenment_project_excerpts() { if( class_exists( 'Jetpack' ) && in_array( 'custom-content-types', Jetpack::get_active_modules() ) ) { add_action( 'enlightenment_entry_content', 'the_excerpt' ); } }