Routing url parameters to a custom page

First add the query param : In your functions.php file add the line function heavy_article_query_vars($query_vars) { $query_vars[] = “kbid”; // the name of the custom query param we want to add return $query_vars; } Next, add the filter function to query...