Advertisement
Guest User

Untitled

a guest
Apr 10th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. if($city){
  4.  
  5.     $args = array(
  6.         'post_title'   => $city . " Electrician",
  7.         'post_name'    => $city . "-electrician",
  8.         'post_date'    => $_SESSION['cal_startdate'],
  9.         'post_content' => $citycontent,
  10.         'post_status'  => 'publish',
  11.         'post_type'    => 'page',
  12.         'post_parent'  => 11192
  13.     );
  14.  
  15.     $city_id = wp_insert_post($args);
  16. }
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement