Navigation menu displays permalinks

Since the (#url) isn’t displayed in the source, I suspect this is being placed there by CSS with a rule like: #menu a:after { content: “#”attr(href); } If I had to guess it’s a print stylesheet run amok, possibly from a plugin.

WordPress “add to menu” button not working

Try looking at the following areas to try and debug; First and foremost, flush the cache for the url, either by hard reload cmd/ctrl + refresh > Hard reload. Or via any caching plugin you may be using. Use the inspector to look at the console, when changing items in the backend and loading the … Read more

How to add nofollow to the_post_navigation?

The only option I see is using {$adjacent}_post_link hook and replacing the fragment of final link or prepare the link yourself from scratch. Replace: add_filter( ‘next_post_link’, ‘se334246_nofollow_link’, 20, 5); add_filter( ‘previous_post_link’, ‘se334246_nofollow_link’, 20, 5); function se334246_nofollow_link( $output, $format, $link, $post, $adjacent ) { $search = sprintf(‘rel=”%s”‘, $adjacent); $output = str_replace($search, ‘rel=”nofollow”‘, $output); return $output; } … Read more