PluginProbe
SpiceBox / 0.3.3
SpiceBox v0.3.3
trunk 0.2.2 0.2.3 0.2.4 0.2.5 0.2.6 0.2.7 0.2.8 0.2.9 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 0.3.8 0.3.9.1 0.3.9.2 0.4 0.5 0.6 0.7 1.0 All 76 releases
spicebox / inc / spicepress / default-pages / about-page.php

about-page.php in SpiceBox 0.3.3, at inc/spicepress/default-pages/about-page.php

27 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Create a about us page
3 $post = array(
4 'comment_status' => 'closed',
5 'ping_status' => 'closed' ,
6 'post_author' => 1,
7 'post_date' => date('Y-m-d H:i:s'),
8 'post_name' => 'About',
9 'post_status' => 'publish' ,
10 'post_title' => 'About',
11 'post_type' => 'page',
12 'post_content' => '<div class="col-md-6 col-sm-6 col-xs-12">
13 <div class="about-img-area wow fadeInDown animated animated animated animated animated" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeInDown;" data-wow-delay="0.4s"><img class="img-responsive" src="'. SPICEB_PLUGIN_URL .'inc/spicepress/images/about/about.jpg" alt="Image" /></div>
14 </div>
15 <div class="col-md-6 col-sm-6 col-xs-12 wow fadeInDown animated animated animated animated animated" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeInDown;" data-wow-delay="0.4s">
16 <h2>We provide best services in the world.
17 </h2>
18 There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly believable.
19 If you are going to use a passage of Lorem Ipsum, you need to be sure there isn’t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.
20 </div>'
21 );
22 //insert page and save the id
23 $newvalue = wp_insert_post( $post, false );
24 if ( $newvalue && ! is_wp_error( $newvalue ) ){
25 update_post_meta( $newvalue, '_wp_page_template', 'template/template-about.php' );
26 }
27 ?>