Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasplevy/55dafa0f5842386701c2f62cc7af4150 to your computer and use it in GitHub Desktop.
Save thomasplevy/55dafa0f5842386701c2f62cc7af4150 to your computer and use it in GitHub Desktop.
<?php // don't copy this to your functions.php
/**
* Output some custom HTML after the course syllabus
*/
function my_after_course_summary_content() {
?>
<h2><?php _e( 'Want to learn more about this course?', 'my-text-domain' ); ?></h2>
<a class="my-awesome-button" href="#"><?php _e( 'Click Here', 'my-text-domain' ); ?></a>
<?php
}
add_action( 'lifterlms_single_course_after_summary', 'my_after_course_summary_content', 95 ); // 95 will display after the syllabus and before reviews
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment