Created
May 18, 2013 07:31
-
-
Save iscat/5603572 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Change the WordPress Default Permalinks for Pages | |
http://wpforce.com/change-wordpress-page-permalinks/ | |
------------------------------------------------- */ | |
add_action( 'init', 'custom_page_rules' ); | |
function custom_page_rules() { | |
global $wp_rewrite; | |
$wp_rewrite->page_structure = $wp_rewrite->root . 'page/%pagename%.html'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment