Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tntcheats

    (@tntcheats)

    Alright, found out how to fix it.
    I simply changed the permalink structure to /archives/%postname%/%year%/

    Thread Starter tntcheats

    (@tntcheats)

    Alright, I managed to find out how to get rid of the right angle quotes. (>>)
    I edited template-functions-general.php
    And changed
    function wp_title($sep = ‘»’, $display = true) {
    global $wpdb, $tableposts, $tablecategories;
    global $year, $monthnum, $day, $cat, $p, $name, $month, $posts, $single;
    to
    function wp_title($display = true) {
    global $wpdb, $tableposts, $tablecategories;
    global $year, $monthnum, $day, $cat, $p, $name, $month, $posts, $single;
    and then down further I changed the first echo in “send it out”.
    // Send it out
    if ($display && isset($title)) {
    echo “$title : “;
    } elseif (!$display && isset($title)) {
    return ” $sep $title”;
    }
    at the moment the site’s permalink structure is
    /%postname%/%year%/

Viewing 2 replies - 1 through 2 (of 2 total)