Home › Forums › Front-end Issues › Edit attribute page › Reply To: Edit attribute page
I found a solution,
I have create an input width menu_order as value
<input type="texte" name="menu_order" value="<?php echo $post->menu_order; ?>"/>
and when i update acf_form();
I launch a function :
add_filter('acf/pre_save_post' , 'my_pre_save_post' );
function my_pre_save_post($post_id) {
$menuOrder = $_POST['menu_order'];
$post = array(
'menu_order' => $menuOrder
);
$post_id = wp_update_post( $post );
// Save the fields to the post
do_action( 'acf/save_post' , $post_id );
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.