• pineapple

    (@pineapple)


    i just installed a theme for wordpress on my 1.5 upgrade, and got the following:

    WordPress database error: [Unknown column ‘time_modified’ in ‘order clause’]
    SELECT * FROM wp_posts WHERE post_status = ‘static’ ORDER BY time_modified ASC

    http://www.k-l-a-s-s-y.com/pineapple

    i do not know what i should edit to fix this. thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Kafkaesqui

    (@kafkaesqui)

    This is one of those 1.5.1 gotchas: a couple parameter value changes occured to wp_list_pages(), while the older names were not aliased. Just edit the header.php for your theme, and where it has this:

    <?php wp_list_pages('sort_column=time_modified&title_li='); ?>

    Change it to:

    <?php wp_list_pages('sort_column=post_modified&title_li='); ?>

    moshu

    (@moshu)

    Thread Starter pineapple

    (@pineapple)

    that fixed it right up. thanks so much!

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

The topic ‘new theme error’ is closed to new replies.