我还在我的PHP基础培训中,但是当帖子是' specialisaties'时,我想展示多个meta_box。我正在加载1个元框,但我需要添加另一个名为' url,$ meta_boxes = url_post_meta_boxes();
} else if ($post->post_type == 'specialisaties') {
$meta_boxes = specialisaties_post_meta_boxes();
}
如何更改else if if加载多个$ meta_boxes?
答案 0 :(得分:0)
您可以通过这种方式将其转换为数组:
location = forms.CharField(widget=forms.TextInput(
attrs={'class': 'yourclass', 'placeholder': 'Enter your location',
}), label=u'Location', max_length=100, required=True)