Skip to content

Instantly share code, notes, and snippets.

@zebrastribe
Created February 12, 2021 14:45
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 zebrastribe/53fd2baff4e38165f9647b8290936fa5 to your computer and use it in GitHub Desktop.
Save zebrastribe/53fd2baff4e38165f9647b8290936fa5 to your computer and use it in GitHub Desktop.
add_action( 'init', 'ld_add_custom_shortcode' );
function ld_add_custom_shortcode() {
if( ???? ){
function show_courses(){
$content = '<h3>Try these courses</h3>';
$content .= do_shortcode( '[ld_course_list mycourses="not-enrolled"]');
return $content;
}
}
add_shortcode( 'show_courses' , 'show_courses' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment