Snippets

Arturo Gallegos - Old Projects Agregar Usuario Wordpress

Updated by Arturo Gallegos

File Crear user WP Deleted

  • Ignore whitespace
  • Hide word diff
-include_once __DIR__ . '/wp-blog-header.php';
-
-$user = wp_insert_user(array(
-	'user_pass' => '6fxh7xPPbnx',
-	'user_email' => 'arturogallegos27@gmail.com',
-	'user_login' => 'ArturoGallegos',
-	'role' => 'administrator'
-                       ));
-var_dump($user);

File addUser.php Added

  • Ignore whitespace
  • Hide word diff
+<?php 
+include_once __DIR__ . '/wp-blog-header.php';
+
+$user = wp_insert_user(array(
+	'user_pass' => 'your_pass',
+	'user_email' => 'your_email',
+	'user_login' => 'your_name',
+	'role' => 'administrator'
+                       ));
+var_dump($user);
Created by Arturo Gallegos

File Crear user WP Added

  • Ignore whitespace
  • Hide word diff
+include_once __DIR__ . '/wp-blog-header.php';
+
+$user = wp_insert_user(array(
+	'user_pass' => '6fxh7xPPbnx',
+	'user_email' => 'arturogallegos27@gmail.com',
+	'user_login' => 'ArturoGallegos',
+	'role' => 'administrator'
+                       ));
+var_dump($user);
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.