HEX
Server: Apache
System: Linux d5123.usc1.stableserver.net 5.14.0-570.17.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Sat May 24 12:53:17 EDT 2025 x86_64
User: d5123 (1001)
PHP: 8.4.21
Disabled: NONE
Upload Files
File: /home/d5123/myboofola_com/wp-content/mu-plugins/permalink_setter.php
<?php
/* Plugin name: Permalink Setter
Description: Sets permalink structure for each blog activation
*/

/* Start Adding Functions Below this Line */

add_action('activate_blog', 'wpse_271662_set_permalinks');
function wpse_271662_set_permalinks() {
    global $wp_rewrite;
    $wp_rewrite->set_permalink_structure('/%post_id%/%postname%/');
    $wp_rewrite->flush_rules();
}

/* Stop Adding Functions Below this Line */
?>