A site I'm working on has an odd problem: two sets of "posts" menus in the admin. The client brought me on board and says "it's been there a while". How would I go about finding out why there are two sets? The site was brought into WordPress from Drupal. I created the theme, but the client was active in bringing content over. How we got a duplicate "posts" menu I do not know, and neither does he.
Where would I start with figuring this out? I've been trying deactivating and reactivating plug-ins and have had no clues in that regard.
A site I'm working on has an odd problem: two sets of "posts" menus in the admin. The client brought me on board and says "it's been there a while". How would I go about finding out why there are two sets? The site was brought into WordPress from Drupal. I created the theme, but the client was active in bringing content over. How we got a duplicate "posts" menu I do not know, and neither does he.
Where would I start with figuring this out? I've been trying deactivating and reactivating plug-ins and have had no clues in that regard.
Share Improve this question asked Oct 11, 2019 at 0:12 David BorrinkDavid Borrink 234 bronze badges 4- Do you have duplicate menus in admin? Can you share screenshot here? – Vantiya Commented Oct 11, 2019 at 4:46
- @Vantiya Yes. Here it is: prnt.sc/pi63os – David Borrink Commented Oct 12, 2019 at 0:04
- Can you check if the posts and the URL are same for both the Posts Menu? – Vantiya Commented Oct 12, 2019 at 3:55
- @Vantiya Yes, the URLs for all the items in the Posts Menus are the same, and the admin display is the same for both sets. If I could determine why a duplicate set was showing up in the sidebar, I'd be glad to eliminate whatever is causing the extra set. – David Borrink Commented Oct 13, 2019 at 1:33
1 Answer
Reset to default 0Hi Sir hope these can help:
- You need to check your database and see if the posts are really duplicated(maybe it is only visual duplicates for same posts), you will need to use a mysql client like phpmyadmin or similar solutions. you will check the
wp_posts
table. - Post (content) data are not really in duplicates :
(only one same post in the database) there's a problem in the wordpress Admin templates files. these are in the
wp-admin
folder. - If it is duplicated that means that it was either :
- human error: posts were inserted in bulk two times and it was the operator error.
- bug during migration: posts (data-content) were insered two time by a script.
- hack this is not normal better check your security.
Sorry I don't have enough reputation to comment so I wrote this as an Answer.