How to find the posts page (home page) programatically
Hi @Alkaline: I think you are looking for this: // $page is a post where post_type==’page’ if (get_option(‘show_on_front’)==’page’) { $page_id = get_option(‘page_for_posts’); $page = get_post($page_id); } else { $page = false; }