• I was having a problem with my sidebar archives links display as
    http://%url%%year%/%month%
    rather than
    http://%url%/%year%/%month%
    I tracked it back to the function get_month_link in template-functions-links.php
    I had to replace the line:
    $monthlink = str_replace(‘%year%’, $year, $monthlink);
    with
    $monthlink = str_replace(‘%year%’, “/”.$year, $monthlink);
    and it worked smoothly from there on. I thought this was quite a wierd bug but I’m surprised its not come to light before. There may be another solution to this – but this was the quickest one I saw.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘get_month_link *BUG*’ is closed to new replies.