これをリンク先を「/news/2019/」にしたいと思っています。
newsというカスタム投稿タイプを作成しパーマリンク設定をカスタム構造http://example.com/%post_id%/にしています。
archive.php
php
1<?php wp_get_archives(array('post_type' => 'news', 'type' => 'yearly', )); ?>
function.php
php
1function add_custom_rewrite_rules() { 2 $rules = array( 3 'top' => array( 4 '^news/([0-9]{4})/page/([0-9]+)/?' => 'index.php?post_type=news&year=$matches[1]&paged=$matches[2]', 5 '^news/([0-9]{4})/?' => 'index.php?post_type=news&year=$matches[1]', 6 ), 7 'bottom' => array( 8 ) 9 ); 10 foreach ( $rules as $position => $position_rules ) { 11 foreach ( $position_rules as $rule => $rewrite ) { 12 add_rewrite_rule($rule, $rewrite, $position ); 13 } 14 } 15}; 16 17add_action( 'init', 'add_custom_rewrite_rules');
記事詳細ページについては以下の記述でget_permalink()のリンク先を変更することができました。
function.php
php
1add_filter('post_type_link', function($post_link, $post, $leavename, $sample ){ 2 if('news' === $post->post_type) { 3 $post_link = str_replace('%news_id%', $post->ID, $post_link); 4 } 5 if('reports' === $post->post_type) { 6 $post_link = str_replace('%reports_id%', $post->ID, $post_link); 7 } 8 return $post_link; 9}, 10, 4);
function.php
php
1add_action('registered_post_type', function($post_type, $post_type_object) { 2 if('news' === $post_type) { 3 add_rewrite_tag('%news_id%', '([0-9]+)', "post_type=news&p="); 4 add_permastruct('news', 'news/%news_id%', []); 5 } 6 if('reports' === $post_type) { 7 add_rewrite_tag('%reports_id%', '([0-9]+)', "post_type=reports&p="); 8 add_permastruct('reports', 'reports/%reports_id%', []); 9 } 10}, 10 ,2);
あなたの回答
tips
プレビュー