Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created September 15, 2016 00:26
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/b78714f43df2a368080d3a0cdb116c39 to your computer and use it in GitHub Desktop.
Save thomasplevy/b78714f43df2a368080d3a0cdb116c39 to your computer and use it in GitHub Desktop.
<?php // don't copy this line!
add_filter( 'lifterlms_register_post_type_course', 'my_custom_course_settings' );
function my_custom_course_settings( $obj ) {
$obj['rewrite']['slug'] = _x( 'c', 'course link slug', 'my-text-domain' );
return $obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment