Advertisement
Guest User

Untitled

a guest
Jun 12th, 2010
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2. /* Add a Page */
  3.  
  4. global $user_ID;
  5. $new_post = array(
  6.     'comment_status' => 'open',
  7.     'post_parent' => '413',
  8.     'post_title' => '<?php bp_displayed_user_username() ?>', /* causing a page with NO title */
  9.     'post_content' => 'Leave feedback for this user.',
  10.     'post_status' => 'publish',
  11.     'post_date' => date('Y-m-d H:i:s'),
  12.     'post_author' => '1',
  13.     'post_type' => 'page',
  14.     'post_category' => array(0)
  15. );
  16. $post_id = wp_insert_post($new_post);
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement