Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi!
    Did you found out how to do this?
    Thanks, nici-

    Thread Starter progressive_

    (@progressive_)

    Hi Nici!

    No I did not. I ended up not using the plugin at all =/

    Sooooooooooo, ich habe es!

    Du must die Sortierung umstellen in der generator.php

    Hier drehst Du die Reihenfolge der Jahresanzeige so:

    Zeile 45-48

    function query_manipulation( $bits, $wp_query ) {
    if ( $wp_query->get( ‘months_with_posts’ ) ) {
    $bits[‘fields’] = ‘DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month’;
    $bits[‘orderby’] = ‘year ASC, month ASC’;
    }

    Hier steht normalerweise year DESC, zum Umdrehen also ‘ASC’ eingeben. Damit kommt das jüngste Jahr nach vorn/links.

    Damit auch das zugeh?rige Pane als erstes geladen wird, musst Du dann auch noch die Reihenfolge der Panes umdrehen. Sonst wird eben nach wie vor beim Laden des Archivs die Liste des ?ltestesten Jahres aktiv angezeigt. Die Panes werden hier sortiert:

    Zeile 119
    foreach ( $this->get_years_with_posts( ‘desc’ ) as $year )

    Hier steht normalerweise asc, also muss hier nun desc hinein. Und fertig!

    HTH
    Viele Grü?e

    Ah oh, sorry.

    In English: You alter two lines in the generator.php

    Line 48
    change DESC to ASC

    Line 119
    change asc to desc

    That’s it. Have fun!

    nici-

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Display years with fancy starting from latest year on the left’ is closed to new replies.