我正在尝试为我的网站添加前端帖子添加/编辑选项。我正在使用ACF的acf_form()函数来实现此目的。除右侧的元框外,它工作正常。当用户添加/编辑帖子非常重要时,我无法显示可见性metabox。实际上,此功能无法显示任何元框。我还需要显示特色图片和类别元框。是否有实现此目标的好方法?这是我的代码:
<?php
acf_form_head();
acf_form(array(
'post_id' => 'new_post',
'post_title' => true,
'post_content' => true,
'new_post' => array(
'post_type' => 'aktivitet',
'post_status' => 'publish',
'post_author' => get_current_user_id(),
'post_category' => ''
),
'fields' => array('ingress', 'fylke_lokal', 'sted', 'aktivitet_thumbnail'),
'html_submit_button' => '<input type="submit" class="button box-button green save-content" value="Legg til" />',
'html_after_fields' => wp_dropdown_categories( 'show_option_none=Category&tab_index=4&taxonomy=category&echo=0' ),
//'html_after_fields' => '<select name="acf[field_562fb76f1ad6a]" id="">'.$option.'</select>',
));
?>