Answer the question
In order to leave comments, you need to log in
How to replace menu link with plain text in WordPress?
I'm making a theme in WordPress. I want to ensure that the pages do not refer to themselves in the main menu. Relatively speaking:
Answer the question
In order to leave comments, you need to log in
I found a solution that consists in replacing the navigation output function. Everything is described here: omurashov.ru/wordpress-remove-link-to-current-page...
After that, the styles fly off a little, you will need to make a couple of edits to the CSS, but everything works like that.
I'm not 100% sure because I can't check the code. But I would try something like this:
function my_wp_head() {
if (/*это второй раздел*/)
echo "<script>
/*Заменить ссылку на текст*/;
</script>";
}
add_action('wp_head', 'my_wp_head');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question