UUake Up
UUake Up

Reputation: 400

Extra character added to URL

Ok so I am working on this site (using wordpress), here's the thing; it's only a small aesthetic feature but the main reason I'm asking this question is to discover the cause. If you go to this section of the site you'll notice that you don't actually get sent to the link above, instead of

/recipes/ you go to /recipesa/ which isn't (as far as I'm aware) set up as an automatic redirect, what's more in the back end of the site the code clearly points to /recipes :

/* Taken from the navigation bar code */

<li><a href="<?php echo home_url(); ?>/recipes">Recipes</a></li>

Anyone know why this happens? Cheers

Upvotes: 1

Views: 341

Answers (1)

Joe
Joe

Reputation: 15802

Highly likely that your Recipes page was originally called "Recipesa" by accident and you renamed it, but the permalink didn't change because Wordpress doesn't do that.

Go to Edit Pages in WP-Admin, then edit the Recipes page and check the permalink (directly below the page title textbox).

Upvotes: 2

Related Questions