我有一个wordpress网站,在仪表板中,我添加了一个新的菜单项 - Property,它有一个元字段列表,如位置,价格等。
但同样,我想在其中添加Attachments插件,因此每个新的单个属性都可以为我设置的图库添加附件。我该怎么做呢?
作为更多信息,我在我的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/添加到我的新$属性
答案 0 :(得分:1)
把
define( 'ATTACHMENTS_LEGACY', true ); // force the legacy version of Attachments
位于配置文件的顶部而不是底部,并且工作正常。