Answer the question
In order to leave comments, you need to log in
How to add the /demo directory to a post?
Hello everyone, I have such a url structure on my site. сайт.ру/категория/название_записи
I have a demo for each post, and I would like to display it via a link сайт.ру/категория/название_записи/demo
. How can this be implemented in wordpress?
Answer the question
In order to leave comments, you need to log in
Hello.
You can register a variable named demo
function dco_rewrite_endpoint() {
add_rewrite_endpoint('demo', EP_PERMALINK);
}
add_action('init', 'dco_rewrite_endpoint');
global $wp_query;
if (isset($wp_query->query_vars['demo'])) {
echo 'Это demo';
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question