What is the proper way to use add_rewrite_rule to remove the (question mark)?
问题 I have a page called "People" with a custom template that takes in a variable called name: example.com/people/?name=FirstLast What I want is this: example.com/people/FristLast I know I need to use the add_rewrite_rule and add_rewrite_tag calls but I'm not sure how to achieve my desired result. I've tried this but I get a php error: add_rewrite_rule('^people/([^/]*)/?','index.php?name=$matches[1]','top'); add_rewrite_tag('%name%','([^&]+)'); The error I get is: "Fatal error: Call to a member