ワードプレス3.5を使用しています。tpage という名前のページを作成しました。この tpage/param1 のようなクエリ文字列を渡したいです。このために、次のコードを functions.php に貼り付けましたが、機能していません
add_rewrite_tag('%var1%','([^&]+)');`
add_rewrite_rule('^tpage/([^&]+)/?','index.php?page_id=4&var1=$matches[1]','top');
//Ensure the $wp_rewrite global is loaded
global $wp_rewrite;
//Call flush_rules() as a method of the $wp_rewrite object
$wp_rewrite->flush_rules();
ここで見逃しているものは何ですか?