Änderung des Post_Name nach Änderung des Titels

[themify_is_logged_in]
[php]
function wpufe_update_post_slug( $post_id, $form_id ) {
if( $form_id = ’37‘ ){
$my_post = array( ‚ID‘ => $post_id, ‚post_name‘ => get_the_title( $post_id )
);
wp_update_post( $my_post );
}
}
add_action( ‚wpuf_edit_post_after_update‘, ‚wpufe_update_post_slug‘ );
[/php]
[/themify_is_logged_in]