This code will help you to edit permalink’s structure via php, you need to paste the code in your function.php file Continue reading
function wpc_permalink(){
global $wp_rewrite;
$wp_rewrite->set_permalink_structure('/%postname%/%custom_structure%');
}
add_action('init', 'wpc_permalink');
Source: