Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hereswhatidid/9100807 to your computer and use it in GitHub Desktop.
Save hereswhatidid/9100807 to your computer and use it in GitHub Desktop.
WP_User_Query meta parameters for first name
<?php
$args = array(
'role' => 'Administrator',
'meta_query' => array(
array(
'key' => 'first_name',
'value' => '',
'compare' => '!='
),
),
);
$user_query = new WP_User_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment