Sagamore PTA Wordpress notes: Difference between revisions
(→Address beautification: Remove trailing slash in address) |
(Add how to change starting post ID) |
||
Line 27: | Line 27: | ||
(to get rid of the ugly "?p=#" and default trailing slash) |
(to get rid of the ugly "?p=#" and default trailing slash) |
||
===Change starting post ID=== |
|||
''From [[Sagamore online goals 2014#URL_redirects]]:'' |
|||
Make the new Wordpress installation use post IDs we haven't used before to avoid collisions (terms and users weren't utilized enough on the old site to bother with), then setup .htaccess redirects from the old to the new as desired. |
|||
# On the new Wordpress database: |
|||
#: <pre>ALTER wp_posts AUTO_INCREMENT = 2001 ;</pre> |
|||
===Assigning post IDs=== |
===Assigning post IDs=== |
||
'''''Don't use:''' Although the following is possible, it's probably better to just use redirects for old content (ala [[Sagamore .htaccess]]) and make new content use unique post IDs by doing [[#Change starting post ID]].'' |
|||
* [https://wordpress.stackexchange.com/questions/7177/how-can-i-assign-post-a-specific-id-on-creation#answer-7230 migration - How can I assign post a specific ID on creation? - WordPress Development Stack Exchange] |
* [https://wordpress.stackexchange.com/questions/7177/how-can-i-assign-post-a-specific-id-on-creation#answer-7230 migration - How can I assign post a specific ID on creation? - WordPress Development Stack Exchange] |
Revision as of 02:14, 16 May 2014
Wordpress notes from the Sagamore Online gang (email • archives • subscribe & more)!
Page Tagging & Categories
Of the two default content types in Wordpress, Pages (unlike the other, Posts), cannot have Tags or Categories associated with them by default. It is relatively simple to change that with some code or a simple plugin:
- Pages are Posts (I like that one for its simplicity)
- Post Tags and Categories for Pages
Only add Tags (not Categories) to Pages:
Styling
Bother John Lenz to make it 'perty.
Addresses (URLs)
Address beautification
Be sure to:
- Admin → Settings → Permalinks → Day and name
- Then: Custom Structure
- Remove the trailing slash
(to get rid of the ugly "?p=#" and default trailing slash)
Change starting post ID
From Sagamore online goals 2014#URL_redirects:
Make the new Wordpress installation use post IDs we haven't used before to avoid collisions (terms and users weren't utilized enough on the old site to bother with), then setup .htaccess redirects from the old to the new as desired.
- On the new Wordpress database:
ALTER wp_posts AUTO_INCREMENT = 2001 ;
Assigning post IDs
Don't use: Although the following is possible, it's probably better to just use redirects for old content (ala Sagamore .htaccess) and make new content use unique post IDs by doing #Change starting post ID.
- migration - How can I assign post a specific ID on creation? - WordPress Development Stack Exchange
- wordpress - insert post ID with wp_insert_post - Stack Overflow
- Function Reference/wp insert post « WordPress Codex
- Might want to know how to execute from the command line too
When importing content, it may be easier for sake of redirecting to assign posts/pages the same ID they had on the export site (especially if the export site exposed IDs in its URL (like the PTA site from 2012-2014)).