WordPress's "page (page)"The main function is to let everyone used to make static pages,But before I wanted to use it as a menu category page,As shown below:
My way is to use "new page" in “Permanent link” Enter the address tag,But here encounter a problem,Suppose I want to tag as a bike made a page articles,I'll need to enter link “tag/bike”,But if this input press OK,WordPress will automatically be modified to “tag–bike”。
Early in my solution is to change the input “tag%2fbike”,This input method will not cause WordPress automatically amendments,The browser parses “%2f” Time,Will be automatically converted into “/“,Therefore, we can achieve what I want “tag/bike” Consolidated。
After treatment WordPress move matters today,When checking a number links,This move was found at https seems to not be used,After tried several methods,Finally decided to go directly to modify the database,Once and for all,Modify as follows:
1. Use phpMyAdmin,Enter the following command,List all "pages" project。
SELECT * FROM `wp_posts` WHERE `post_type` = 'page'
2. Edit information “post_name” Field,Directly into the desired address。