Advertisement
Guest User

Untitled

a guest
Mar 16th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function insert_post_type_on_activation() {
  2.  
  3.  
  4. $Post = wp_insert_post(
  5. array(
  6. 'post_title' => __('test post', 'wepguest'),
  7. 'post_content' => 'test content',
  8. 'post_status' => 'publish',
  9. 'post_author' => 1,
  10. 'post_type' => 'book',
  11. 'comment_status' => 'closed'
  12. )
  13. );
  14.  
  15. }
  16.  
  17.  
  18.  
  19.  
  20. register_activation_hook(your_PLUGIN_FILE, 'insert_post_type_on_activation');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement