Skip to content

Instantly share code, notes, and snippets.

@anoopranawat
Created October 17, 2016 06:39
Show Gist options
  • Save anoopranawat/2de4cfec7c60ec470921472153f4bd36 to your computer and use it in GitHub Desktop.
Save anoopranawat/2de4cfec7c60ec470921472153f4bd36 to your computer and use it in GitHub Desktop.
Function to change the 'Timeline and History Slider Pro' Post type Slug
<?php
// Function to change the `Timeline and History Slider Pro` post type slug
function wphtsp_modify_timeline_post_slug( $slug ){
$slug = 'timeline_slider_slug'; // Write your desired slug
return $slug;
}
add_filter( 'wphtsp_post_slug', 'wphtsp_modify_timeline_post_slug' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment