Add this to your default theme’s functions.php function grv_create_default_pages() { // Create New Default Page $args = array( ‘name’ => ‘new-default-page’, ‘post_type’ => ‘page’, ‘post_status’ => ‘publish’, ‘showposts’ => 1, ‘caller_get_posts’=> 1 ); $default_page = array( ‘name’ => ‘new default page’, ‘post_title’ => ‘NEW DEFAULT POST TITLE’, ‘post_content’ => ‘lorem ipsum dolor’, ‘post_status’ => ‘publish’, …
Continue reading “How To Create Default Posts or Pages in a WordPress Network Site”