Action -> Save -> Post Terms not saved
-
Hey, sorry to be a pain but i am back.
When i am logged in to WP my “ACFe -> forms -> actions -> Save” work perfectly when submitting a form and it saves the “Post terms”, but when i log out of WP and submit the form again, they don’t get saved. I am not sure if it’s a problem with how the taxonomy is registered or a bug. (suspect the former).
$args = array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘query_var’ => true,
‘publicly_queryable’=> true,
‘public’ => true,
‘rewrite’ => array( ‘slug’ => ‘cat’, ‘with_front’ => false ),
‘capabilities’ => array( ‘manage_options’, ‘edit_posts’ ),
);
register_taxonomy(‘brief_types’, array( ‘brief’ ),$args);Have i done something wrong?
Thanks
Piers
- The topic ‘Action -> Save -> Post Terms not saved’ is closed to new replies.