著者ページのサブカテゴリを設定するにはどうすればよいですか?
1 回答
- 投票
-
- 2010-11-18
作成者テンプレートの使用を検討する必要があります.作成者ページの表示方法を制御できるので、写真をそこに追加できます. 次に、書き換えエンドポイントを登録して、作成者ページの複数の領域を作成できます..テンプレートで、自分がどの「サブページ」であるかを確認し、それに応じてタブとリストを表示します.
これは基本的に
WP_Query を実行しているため、十分に文書化されているため、簡単に開始できます. You should consider to make use of an author template. It will allow you to control how the author page is displayed, so you can add what you pictured into there.
You can then register a rewrite endpoint to create the multiple areas of the author page. In the template just check on which "subpage" you are and display the tabs and listing accordingly.
That's basically doing WP_Query then which is pretty well documented, so should be an easy start.
-
あなたが提案しているようにエンドポイントを適切に追加する方法についてのチュートリアルを見たことがありますか?それが何を意味するのか正確に把握するのに苦労しています.Have you seen any tutorials on how to properly add an endpoint like you're suggesting? I'm having a hard time grasping exactly what you mean by that.
- 0
- 2010-11-18
- Dan Gayle
-
エンドポイントの追加と読み取り:https://gist.github.com/705545adding and reading an endpoint: https://gist.github.com/705545
- 1
- 2010-11-18
- hakre
学校用にWordpressをセットアップしています.彼らは、教師がさまざまなカテゴリ(課題、イベントなど)で投稿を作成できるサイトの独自のセクションを持つことができるようにしたいと考えています.
Wordpressは複数の作成者をサポートしており、
http://domain.com/authors/{username}
にアクセスすると、それらの作成者による投稿をすぐに表示できることを知っています.ただし、1つのループでさまざまなカテゴリのすべての投稿を表示するのではなく、ユーザーがカテゴリ別に投稿を表示できるようにし、リンクメニューから選択できるようにします.
誰かがこれを行う方法について正しい方向に私を向けることができますか?著者とカテゴリで投稿をフィルタリングするURLを作成する方法はありますか?