When add wordpress page in menu it converted in to custom link

The issue was in table structure of wp_post. The wp_posts table’s ID field is somehow lost it’s functionality of increment automatically. Means when new row use to add in the table then ID field suppose to increment by 1. But it was not happening after update.

So I just edit table structure and make it primary key and assign auto increment and Problem got solve in minute.

Leave a Comment