• Recently upgraded to 2.1. On my website, the links for my pages were missing. In the support forums I read that this could be due to my pages having a post_status of ‘publish’ instead of ‘static’. So I changed their status to ‘static’:

    UPDATE wp_posts
    SET post_status = ‘static’
    where post_type = ‘page’

    Now my pages show on my website – but they’re no longer listed in the WP “Page Management” page (edit-pages.php)!

    If I change the status back to ‘publish’, the pages show on Page Management, but no longer show on the website.

    Anyone have any suggestions on how to resolve this? Thanks!

The topic ‘Pages post_status static versus publish’ is closed to new replies.