Skip to content

Instantly share code, notes, and snippets.

@thobroni
Last active August 4, 2018 06:27
Show Gist options
  • Save thobroni/54fdb3273648772f43fd4a4e065c5be8 to your computer and use it in GitHub Desktop.
Save thobroni/54fdb3273648772f43fd4a4e065c5be8 to your computer and use it in GitHub Desktop.
<?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