Show page without reference to post (like front-page)
Thanks to toschos hint I could solve the problem. This is the code that I use: // Register the endpoint function my_init() { add_rewrite_endpoint(‘votes’, EP_ALL); } add_action(‘init’, ‘my_init’); // Execute a function when the endpoint is called function my_redirect() { global $wp_query; if (isset($wp_query->query_vars[‘votes’])) { $wp_query->is_404 = false; add_filter( ‘wp_title’, ‘my_title_votes’, 10, 2 ); // … Read more