How to Edit Breadcrumbs in WordPress
Breadcrumbs are an essential part of navigation for a blog, especially a large blog with several inner pages. Breadcrumbs help your users go back to a category or a main page instead of clicking the "Back" button. They also help search engines such as Google navigate and crawl pages within your blog. You use the PHP editor in your WordPress dashboard to change the breadcrumb code.
Instructions
-
-
1
Open a Web browser and log in to your WordPress dashboard using your admin username and password.
-
2
Click "Appearance" in the left panel and select the "Editor" from the list of options. The right side of the window displays all of the PHP files. Click the file that contains your breadcrumb code.
-
-
3
Edit the breadcrumb code. For instance, if you want to edit the "Home" link that navigates to a custom page on the blog, add the following PHP link code:
echo '<a href='custompage.php'>';
-
4
Click the "Update" button to save the changes. Click the blog name at the top of your dashboard to open the blog page and review the breadcrumb changes.
-
1