Created
October 17, 2016 06:39
-
-
Save anoopranawat/2de4cfec7c60ec470921472153f4bd36 to your computer and use it in GitHub Desktop.
Function to change the 'Timeline and History Slider Pro' Post type Slug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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