Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonyingling/8c82d0d92764d3652ff055b345767dcf to your computer and use it in GitHub Desktop.
Save jasonyingling/8c82d0d92764d3652ff055b345767dcf to your computer and use it in GitHub Desktop.
Get ACF Fields from 'authors'
$users = get_users( array( 'role' => 'author' ) );
foreach ( $users as $user ) {
the_field( 'field_name', 'user_' . $user->ID );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment