为WordPress WPu重写添加规则
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为WordPress WPu重写添加规则相关的知识,希望对你有一定的参考价值。
courtesy of mark8barnes (http://wordpress.org/support/profile/52354)
add_action('init', 'flush_the_rewrite_rules'); add_filter('generate_rewrite_rules', 'create_rewrite_rules'); add_filter('query_vars', 'add_query_vars'); function create_rewrite_rules() { $variable='download'; add_rewrite_rule($wordpress_root.'/'.$variable.'(/(.*))?/?$', 'index.php?pagename=$matches[1]&'.$variable.'=$matches[3]'); } function flush_the_rewrite_rules () { flush_rewrite_rules; } function add_query_vars($public_query_vars) { $public_query_vars[] = 'download'; return $public_query_vars; }
以上是关于为WordPress WPu重写添加规则的主要内容,如果未能解决你的问题,请参考以下文章