0

テキストベースの記事を書いているギフトのアイデアを含むWordpressブログを持っています。私は最近、作成したい機能の解決策であると信じているカスタム投稿タイプを発見しました。

私が欲しいもの:

  • 通常の「カテゴリー」と「タグ」を使用して、各カスタム投稿にタグを付けることができます。
  • 製品画像 (カスタム投稿) を含む 3x3 マトリックスを作成し、各カテゴリ ビューまたはタグ ビュー (その後に、カテゴリまたはタグの典型的な記事リストが続きます) の上に表示します。

例:

  • 「お母さんへのギフト」というカテゴリがあり、「ピンク」、「安い」というタグが付けられているとします。
  • 「お母さんへの贈り物」カテゴリに、お母さんへの贈り物の難しさについて話し合うテキスト記事(通常の投稿)が10あります
  • 私は 9 つのカスタム投稿を作成します。それぞれが特定のギフトです (例: ピンクのヘアブラシ)。それらを「お母さんへのギフト」カテゴリに配置し、「ピンク」でタグ付けしたいと思います。
  • myrandomgiftblogname.com/category/gifts-for-mom を表示するときに、ビューを取得できるようにしたい:

お母さんへのプレゼント
商品 商品 商品
商品 商品 商品
商品 商品 商品

記事:
- この素晴らしい記事
- あの素晴らしい記事
- など

これは可能だと思いますが、どこから始めればよいかわかりません。正しい方向に私を向けることができますか?どのプラグインが必要ですか? 自分でプログラミングを行う必要がありますか (またはプラグイン構成のみ)? これは可能ですか?

4

2 に答える 2

1

The description is a bit broad, hence a bit broad answer.

Two things are needed:

1) A plugin to create the Custom Post Type.

It is considered best practice to let CPT's in Plugin territory. So you can swap designs and preserve your CPT functionality. In reality, you are asking for future problems letting this be handled by the theme.

Create your own plugin, which would contain a register_post_type and any extra configs.

Use an existent plugin, like Custom Content Type Manager.
Its Custom Fields features are quite handy as well.

Allows users to create custom content types (also known as post types) and standardized custom fields for each, including dropdowns, checkboxes, and images.

2) Learn how to use and customize WordPress Templates

http://codex.wordpress.org/Templates
Templates are the files which control how your WordPress site will be displayed on the Web. These files draw information from your WordPress MySQL database and generate the HTML code which is sent to the web browser. Through its powerful Theme system, WordPress allows you to define as few or as many Templates as you like all under one Theme. Each of these Template files can be configured for use under specific situations.

于 2012-12-05T18:53:31.580 に答える
0

次のことを試すことができます。

  1. Pageカテゴリとまったく同じ名前で、カテゴリごとに新しい を追加します。
  2. メニューで、これらの各ページに必要な画像を添付しImagesます。
  3. スクリプトで、現在のカテゴリと同じ名前のページをクエリし、そのすべての添付ファイルを取得します
于 2012-12-03T13:18:41.563 に答える