• Resolved Tonio

    (@anthonybruno)


    I currently have my archives in my sidebar showing links like this:

    • December 2008
    • January 2009

    and what im using to display the title once you are in those archives is:

    if ( is_archive() ) {
    	wp_title('');
    	} else{}

    But for some reason, that title displays as so:

    • 2008 December
    • 2009 January

    How can I get the wp_title() to display the other way around? I check in my date settings and that didnt seem to work.

    Thanks

    EDIT: Fixed this myself..

    if ( is_archive() ) {
    	wp_title('',true,'right');
    	} else{}
  • The topic ‘Archives Link and wp_title()’ is closed to new replies.