Last active
August 4, 2018 06:27
-
-
Save thobroni/54fdb3273648772f43fd4a4e065c5be8 to your computer and use it in GitHub Desktop.
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 | |
add_action("init", "wprl_add_endpoints"); | |
function wprl_add_endpoints() | |
{ | |
add_rewrite_rule('^book/([^/]+)/([^/]+)/?', 'index.php?post_type=book&name=$matches[1]&tab=$matches[2]', 'top'); | |
} | |
add_filter("query_vars", "wprl_query_vars"); | |
function wprl_query_vars($vars) | |
{ | |
$vars[] = "tab"; | |
return $vars; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment