WordPress Custom URL parameter Implementation Routing function code example _php instance

Source: Internet
Author: User

After two days of regular expression learning, and the study of WordPress's routing function, the successful implementation of the custom WordPress routing function, the following is the implementation of routing rules.
If you have a custom URL parameter, to pass through the route, you must add the parameters through the WordPress function:

Copy Code code as follows:

Add Query_args
function Add_query_vars ($aVars) {
$aVars [] = ' score ';
$aVars [] = ' type '; Represents the name of the product category as shown in the URL
return $aVars;
}
Add_filter (' Query_vars ', ' add_query_vars ');//wordpress filter

At the same time to get the parameters of the page also need to use WordPress function to get:

Copy Code code as follows:

$type =isset ($wp _query->query_vars[' type '))? UrlDecode ($wp _query->query_vars[' type ')): ';

Copy Code code as follows:

Routing rules-sorted by time and latest entries of various types
function Add_rewrite_rules ($aRules) {
$aNewRules = Array (
' text/([^latest][^/]+)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=2&score= $matches [1]&paged= $matches [3] ',
' image/([^latest][^/]+)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=3&score= $matches [1]&paged= $matches [3] ',
' video/([^latest][^/]+)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=4&score= $matches [1]&paged= $matches [3] ',
' resource/([^latest][^/]+)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=5&score= $matches [1]&paged= $matches [3] ',
' text/(latest)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=2&type= $matches [1]&paged= $matches [3] ',
' image/(latest)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=3&type= $matches [1]&paged= $matches [3] ',
' video/(latest)/? (/page/([0-9]+)?) /?$ ' => ' index.php?cat=4&type= $matches [1]&paged= $matches [3] ',
' resource/(latest)/?$ ' => ' index.php?cat=5&type= $matches [1] ',
' (month)/? (/page/([0-9]+)?) /?$ ' => ' index.php?score= $matches [1]&paged= $matches [3] ',
' (24hr)/? (/page/([0-9]+)?) /?$ ' => ' index.php?score= $matches [1]&paged= $matches [3] ',
);
$aRules = $aNewRules + $aRules;
return $aRules;
}
Add_filter (' Rewrite_rules_array ', ' add_rewrite_rules ');

Copy Code code as follows:

Routing Rules-categories
Add_rewrite_rule (' ^text/? /page/([0-9]+)?] /?$ ', ' index.php?cat=2&paged= $matches [2] ', ' top '); The corresponding Category ID
Add_rewrite_rule (' ^image/? /page/([0-9]+)?] /?$ ', ' index.php?cat=3&paged= $matches [2] ', ' top ');
Add_rewrite_rule (' ^video/? /page/([0-9]+)?] /?$ ', ' index.php?cat=4&paged= $matches [2] ', ' top ');
Add_rewrite_rule (' ^resource/? /page/([0-9]+)?] /?$ ', ' index.php?cat=5&paged= $matches [2] ', ' top ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.