Skip to content

Instantly share code, notes, and snippets.

View rgsmith1980's full-sized avatar

Robert Smith rgsmith1980

  • Stakt Media
  • Collierville, TN
View GitHub Profile
@rgsmith1980
rgsmith1980 / gist:5646514
Created May 24, 2013 21:05
Create a WordPress admin user via SQL
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('userid_here', 'username_here', MD5('password_here'), 'personname_here', 'email_here', 'http://www.wpbeginner.com/', '2011-06-07 00:00:00', '', '0', 'personname_here');
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, 'userid_here', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, 'userid_here', 'wp_user_level', '10');
@rgsmith1980
rgsmith1980 / gist:5513583
Last active December 16, 2015 23:19
WordPress query_posts by meta field for custom post type
query_posts(array(
'post_type' => 'your-post-type-here',
'meta_key' => 'your-meta-key-name',
'meta_query'=> array(
array(
'key'=>'your-meta-key-name',
'value'=> 'your-search-val',
'compare' => '='
)),
'orderby' => 'meta_value_num',