Skip to content

Instantly share code, notes, and snippets.

@besimhu
Created July 24, 2015 13:02
Show Gist options
  • Save besimhu/62db6c1f899226e1984c to your computer and use it in GitHub Desktop.
Save besimhu/62db6c1f899226e1984c to your computer and use it in GitHub Desktop.
Get ACF field without using the ACF functions.
<?php
// get post ID
$pid = get_the_ID();
// acf field
$acf_field = get_post_meta( $pid, 'acf_field_slug', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment