Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

wordpress/customFieldTemplate

カスタムフィールドテンプレート

wp_postmeta

データはwp_postmetaに格納されており、一つの「ポスト」について複数のレコードが作成される。

例えばテンプレートが以下の場合

...
[メンズ品番]
type = text
size = 35
...
[メンズ長袖品番]
type = text
size = 35

以下のレコードが作成されうる。

  • post_id=19169, meta_key=メンズ品番, meta_value=KFC7J40
  • post_id=19169, meta_key=メンズ長袖品番, meta_value=KFC7J41

wp_posts

そもそも上記のpost_idはwp_postsのidを指している。 そして、カスタムフィールドテンプレートにおいて「カスタムポストタイプ」として指定されたもの。例えば、これをproductsとすると、

  • id=19169, post_type=products

などというポストが存在する。