2003-10-26 01:25:26 -04:00
< ? php
$title = 'Permalink Options' ;
$this_file = 'wp-options.php' ;
function add_magic_quotes ( $array ) {
foreach ( $array as $k => $v ) {
if ( is_array ( $v )) {
$array [ $k ] = add_magic_quotes ( $v );
} else {
$array [ $k ] = addslashes ( $v );
}
}
return $array ;
}
if ( ! get_magic_quotes_gpc ()) {
$HTTP_GET_VARS = add_magic_quotes ( $HTTP_GET_VARS );
$HTTP_POST_VARS = add_magic_quotes ( $HTTP_POST_VARS );
$HTTP_COOKIE_VARS = add_magic_quotes ( $HTTP_COOKIE_VARS );
}
$b2varstoreset = array ( 'action' , 'standalone' , 'option_group_id' );
for ( $i = 0 ; $i < count ( $b2varstoreset ); $i += 1 ) {
$b2var = $b2varstoreset [ $i ];
if ( ! isset ( $$b2var )) {
if ( empty ( $HTTP_POST_VARS [ " $b2var " ])) {
if ( empty ( $HTTP_GET_VARS [ " $b2var " ])) {
$$b2var = '' ;
} else {
$$b2var = $HTTP_GET_VARS [ " $b2var " ];
}
} else {
$$b2var = $HTTP_POST_VARS [ " $b2var " ];
}
}
}
require_once ( 'optionhandler.php' );
2003-10-30 09:56:29 -05:00
if ( $HTTP_POST_VARS [ 'Submit' ] == 'Update' ) {
2003-10-26 01:25:26 -04:00
update_option ( 'permalink_structure' , $HTTP_POST_VARS [ 'permalink_structure' ]);
$permalink_structure = $HTTP_POST_VARS [ 'permalink_structure' ];
} else {
$permalink_structure = get_settings ( 'permalink_structure' );
}
switch ( $action ) {
default :
$standalone = 0 ;
include_once ( 'b2header.php' );
if ( $user_level <= 3 ) {
die ( " You have no right to edit the options for this blog.<br>Ask for a promotion to your <a href= \" mailto: $admin_email\ " > blog admin </ a > : ) " );
}
?>
< ul id = " adminmenu2 " >
< ? php
//we need to iterate through the available option groups.
$option_groups = $wpdb -> get_results ( " SELECT group_id, group_name, group_desc, group_longdesc FROM $tableoptiongroups ORDER BY group_id " );
foreach ( $option_groups as $option_group ) {
if ( $option_group -> group_id == $option_group_id ) {
$current_desc = $option_group -> group_desc ;
$current_long_desc = $option_group -> group_longdesc ;
echo ( " <li><a id= \" current2 \" href= \" $this_file ?option_group_id= { $option_group -> group_id } \" title= \" { $option_group -> group_desc } \" > { $option_group -> group_name } </a></li> \n " );
} else {
echo ( " <li><a href= \" $this_file ?option_group_id= { $option_group -> group_id } \" title= \" { $option_group -> group_desc } \" > { $option_group -> group_name } </a></li> \n " );
}
} // end for each group
?>
2003-10-26 14:49:02 -05:00
< li class = " last " >< a href = " wp-options-permalink.php " > Permalinks </ a ></ li >
2003-10-26 01:25:26 -04:00
</ ul >
< br clear = " all " />
< div class = " wrap " >
< h2 > Edit Permalink Structure </ h2 >
< p > WordPress offers you the ability to create a custom URI structure for your permalinks and archives . The following & #8220;tags” are available:</p>
< ul >
< li >< code >% year %</ code > --- The year of the post , 4 digits , for example 2003 </ li >
< li >< code >% monthnum %</ code > --- Two digit month , for example 05 </ li >
< li >< code >% day % </ code >--- Day of the month , for example 28 </ li >
< li >< code >% postname %</ code > --- A sanitized version of the title of the post . So & quot ; This Is A Great Post !& quot ; becomes & quot ; this - is - a - great - post & quot ; </ li >
2003-12-04 17:53:15 -05:00
< li >< code >% post_id %</ code > --- The unique ID # of the post. <strong></strong></li>
2003-10-26 01:25:26 -04:00
</ ul >
2003-12-04 17:53:15 -05:00
< p > So for example a value like < code >/ archives /% year %/% monthnum %/% day %/% postname %/</ code > could give you a permalink like < code >/ archives / 2003 / 05 / 23 / my - cheese - sandwich /</ code > . For this to work you ' ll need mod_rewrite installed on your server for the rule generation rule to work below . In the future there may be other options . </ p >
2003-10-26 01:25:26 -04:00
< form name = " form " action = " wp-options-permalink.php " method = " post " >
< p > Use the template tags above to create a virtual site structure :</ p >
< p >
< input name = " permalink_structure " type = " text " style = " width: 100%; " value = " <?php echo $permalink_structure ; ?> " />
</ p >
< p >
< input type = " submit " name = " Submit " value = " Update " >
</ p >
</ form >
2003-10-30 10:03:30 -05:00
< ? php
if ( $permalink_structure ) {
?>
2003-10-26 01:25:26 -04:00
< p > Using the permalink structure value you currently have , < code >< ? php echo $permalink_structure ; ?> </code>, these are the mod_rewrite rules you should have in your <code>.htaccess</code> file.</p>
< ? php
$site_root = str_replace ( 'http://' , '' , trim ( get_settings ( 'siteurl' )));
$site_root = preg_replace ( '|([^/]*)(.*)|i' , '$2' , $site_root );
if ( '/' != substr ( $site_root , - 1 )) $site_root = $site_root . '/' ;
$rewritecode = array (
'%year%' ,
'%monthnum%' ,
'%day%' ,
'%postname%'
);
$rewritereplace = array (
'([0-9]{4})?' ,
'([0-9]{1,2})?' ,
2003-10-26 19:42:16 -05:00
'([0-9]{1,2})?' ,
2003-10-26 01:25:26 -04:00
'([0-9a-z-]+)?'
);
$queryreplace = array (
'year=' ,
'monthnum=' ,
'day=' ,
'name='
);
$match = str_replace ( '/' , '/?' , $permalink_structure );
2003-12-05 15:14:07 -05:00
$match = preg_replace ( '|/[?]|' , '' , $match , 1 );
2003-10-26 01:25:26 -04:00
2003-12-05 15:14:07 -05:00
$match = str_replace ( $rewritecode , $rewritereplace , $match );
$match = preg_replace ( '|[?]|' , '' , $match , 1 );
2003-10-26 01:25:26 -04:00
preg_match_all ( '/%.+?%/' , $permalink_structure , $tokens );
2003-11-11 17:15:16 -05:00
$query = 'index.php?' ;
2003-10-26 01:25:26 -04:00
for ( $i = 0 ; $i < count ( $tokens [ 0 ]); ++ $i ) {
if ( 0 < $i ) $query .= '&' ;
$query .= str_replace ( $rewritecode , $queryreplace , $tokens [ 0 ][ $i ]) . '$' . ( $i + 1 );
}
?>
< p >< code > RewriteEngine On < br />
RewriteBase < ? php echo $site_root ; ?> <br />
2003-11-11 17:15:16 -05:00
RewriteRule ^< ? php echo $match ; echo '$ ' . $site_root . $query ?> [QSA]</code></p>
2003-10-26 01:25:26 -04:00
</ div >
< ? php
2003-10-30 10:03:30 -05:00
} else {
?>
< p >
You are not currently using customized permalinks . No special mod_rewrite
rules are needed .
</ p >
< ? php
}
echo " </div> \n " ;
2003-10-26 01:25:26 -04:00
break ;
}
include ( " b2footer.php " ) ?>