我有一个 wordpress 网站,在仪表板中,我添加了一个新菜单项 - 属性,其中包含位置、价格等元字段列表。
但同样,我想向它添加附件插件,因此每个新的单个属性都可以为我设置的图片库添加附件。我该怎么做呢?
作为更多信息,我在我的functions.php中定义了这个:
$property->add_meta_box(
'Property Info',
array(
array(
'name' => 'price',
'label' => 'Price',
'description' => 'Leave Blank for TBC',
'type' => 'text'
),
array(
'name' => 'bedrooms',
'label' => 'Bedrooms',
'type' => 'text'
),
array(
'name' => 'location',
'label' => 'Location',
'type' => 'select',
'options' => get_array_of_locations(),
),
array(
'name' => 'property_type',
'label' => 'Type',
'type' => 'select',
'options' => get_array_of_property_types(),
),
array(
'name' => 'postcode',
'label' => 'Postcode',
'type' => 'text',
),
)
);
但我不知道如何将http://wordpress.org/extend/plugins/attachments/installation/添加到我的新 $property