teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

リライトルールのサンプルを追加

2018/08/27 09:11

投稿

marlboro_tata
marlboro_tata

スコア525

answer CHANGED
@@ -4,4 +4,17 @@
4
4
  post_type= の値はカスタム投稿タイプのスラッグ
5
5
  author= の値はユーザー(author)のID
6
6
 
7
- それが確認できたら、あとはリライトルールを追加すれば良いような気がします。
7
+ それが確認できたら、あとはリライトルールを追加すれば良いような気がします。
8
+
9
+ テーマのfunctions.phpに下記を追加
10
+
11
+ ```PHP
12
+ function authorUrlRewrite(){
13
+ add_rewrite_rule('^hoge/author/([^/]*)/?$' , 'index.php?post_type=hoge&author_name=$matches[1]','top');
14
+ }
15
+ add_action( 'init', 'authorUrlRewrite' );
16
+ ```
17
+
18
+ 適用するには、functions.phpをアップロード後、
19
+ 設定>パーマリンク設定 を開いて何もしないで変更を保存ボタンを押す。
20
+ ドメイン以下に /hoge/author/username/ で、投稿の一覧が表示されるはずです。