Advertisement
Guest User

insérer page wordpress

a guest
Oct 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. $post_cours = array(
  2.         'post_title' => $_POST['nom'],
  3.         'post_content' => $_POST['description'],
  4.         'post_status' => 'publish',
  5.         'post_type' => 'page',
  6.     );
  7. wp_insert_post($post_cours);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement