ホームページ > バックエンド開発 > PHPチュートリアル > wordpressのルーティング機能を実装する

wordpressのルーティング機能を実装する

WBOY
リリース: 2016-06-23 14:39:40
オリジナル
1342 人が閲覧しました

2 日間正規表現を学習し、WordPress のルーティング機能を学習した結果、WordPress のカスタム ルーティング機能を実装することができました。 以下はルーティング ルールの実装です。

ルーティングを介して渡されるカスタム URL パラメーターがある場合、パラメーターは WordPress 関数を使用して追加する必要があります:

//add query_argsfunction 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过滤器
ログイン後にコピー


同時に、ページ上で WordPress 関数を使用してパラメーターを取得する必要もあります:
$type=isset($wp_query->query_vars['type'])?urldecode($wp_query->query_vars['type']):'';
ログイン後にコピー


//路由规则-根据时间排序以及各类别的最新条目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');
ログイン後にコピー


//路由规则-类别add_rewrite_rule('^text/?(/page/([0-9]+)?)?/?$','index.php?cat=2&paged=$matches[2]','top'); //http://www.ke6.com/text/ 段子对应的类别IDadd_rewrite_rule('^image/?(/page/([0-9]+)?)?/?$','index.php?cat=3&paged=$matches[2]','top'); //http://www.ke6.com/image/ 趣图对应的类别IDadd_rewrite_rule('^video/?(/page/([0-9]+)?)?/?$','index.php?cat=4&paged=$matches[2]','top'); //http://www.ke6.com/video/ 视频对应的类别IDadd_rewrite_rule('^resource/?(/page/([0-9]+)?)?/?$','index.php?cat=5&paged=$matches[2]','top'); //http://www.ke6.com/resource/ 视频对应的类别ID
ログイン後にコピー


達成される URL ルーティング効果は次のとおりです:

全 24 時間: http://www.domain.com/24hr/
全 7 日間: http://www .domain.com/
全 30 日間: http://www.domain.com/month/
Duanzi-24 時間: http://www.domain.com/text/24hr/
Duanzi-7 日間: http ://www.domain.com /text/
ジョーク - 30 日間: http://www.domain.com/text/month/
ビデオ: ビデオ
興味深い写真: 画像
注目の情報: リソース
ランダム: ランダム

最も新鮮な情報 - すべて: http://www.domain.com/latest/
最も新鮮なジョーク: http://www.domain.com/text/latest/

この記事へのリンク: http:// www.tantengvip.com/2013/11/wordpress -route/

wordpress の二次開発について詳しくは、こちらをご覧ください:
http://www.tantengvip.com/category/web/wordpress/


ディスカッションに返信(解決策)

返信するとポイントが付与されます! !

何をしているのかわかりません

何をしているのかわかりません


技術的な投稿を投稿して共有してください!

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート