Can't Change Permalinks

Discussion in 'GeoCraft WordPress Theme' started by kossuk, Oct 16, 2013.

  1. kossuk

    kossuk Guest

    Joined:
    Jan 25, 2013
    Messages:
    42
    Likes Received:
    4
    Well this is puzzling. I have a site using GeoCraft and, for my blog side of things, we want the category in the URL, but every time we change the Permalink settings in WP settings, it reverts back to PostName only.

    Is there something in the theme doing this or can anyone make any suggestion? Never had this problem with WP before.

    Thanks.
    Martin
     
  2. kossuk

    kossuk Guest

    Joined:
    Jan 25, 2013
    Messages:
    42
    Likes Received:
    4
    OK so I found the culprit, it's written into the theme:


    Code:
    function cc_reset_permalinks() {
        global $wp_rewrite;
        $wp_rewrite->set_permalink_structure('/%postname%/');
        $wp_rewrite->flush_rules();
    }

    So, how do I work around it? I don't want my blog post URLs to lack the category name.

    Martin
     

Share This Page