WpCode.net

Daily Wordpress Code Snippet

How to edit permalink structure via php

| 0 comments

Pin It

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:

Leave a Reply

Required fields are marked *.

*