Konstantinos-infogeek
12/29/2014 - 7:46 PM

Set a page as home page in wordpress example, source: http://kuttler.eu/code/set-static-front-page-and-blog-page-programmatically-in-wordpre

<?php

// Use a static front page
$about = get_page_by_title( 'About' );
update_option( 'page_on_front', $about->ID );
update_option( 'show_on_front', 'page' );

// Set the blog page
$blog   = get_page_by_title( 'Blog' );
update_option( 'page_for_posts', $blog->ID );

// Switch to our theme
//switch_theme( 'Template', 'stylesheet' );
?>