Skip to content

Instantly share code, notes, and snippets.

@craigsimps
Created August 19, 2015 13:00
Show Gist options
  • Save craigsimps/7f9e0d4d4549441de9cc to your computer and use it in GitHub Desktop.
Save craigsimps/7f9e0d4d4549441de9cc to your computer and use it in GitHub Desktop.
Return an array of ACF fields.
<?php
function get_acf_meta( $post_id, array $meta_keys ) {
foreach ( $meta_keys as $meta_key ) {
$fields[$meta_key] = get_post_meta( $post_id, $meta_key, true );
}
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment