我在前端创建了编辑ACF表单,我写道,帖子标题也可以通过该表单进行编辑。
但当我更改帖子标题字段时,我的永久链接不会基于标题而更改。
<?php
if ( ( is_user_logged_in() ) ) {
echo "<div class=\'acf-edit-post\'>";
acf_form_head();
acf_form (array(
//\'post_id\' => 401, // Get the post ID
\'post_title\' => get_the_title(),
\'field_groups\' => array(7), // Create post field group ID(s)
\'form\' => true,
\'return\' => \'%post_url%\',
\'html_before_fields\' => \'\',
\'html_after_fields\' => \'\',
\'submit_value\' => \'Save Changes\',
\'updated_message\' => __("Post updated", \'acf\')
));
echo "</div>";
}
?>