在功能上。php我正在为此url添加重写规则:
http://www.myblog.com/?currentpage=1
http://www.myblog.com/?currentpage=2
等等。。。
这是我使用的代码,你能给我重写规则,把我的URL转换成漂亮的URL吗?
add_action( \'init\', \'wpa5413_init\' );
function wpa5413_init() {
// Remember to flush the rules once manually after you added this code!
add_rewrite_rule(
\'Please add my rewrite rule\',
\'Please add my rewrite rule\',
\'top\' );
}
add_filter(\'query_vars\', \'wpa3537_query_vars\');
function wpa3537_query_vars($query_vars) {
$query_vars[] = \'currentpage\';
return $query_vars;
}
泰!