Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from besimhu/ACF Post Meta - Single.php
Created April 30, 2016 05:14
Show Gist options
  • Select an option

  • Save dgoze/1f3704e7c913b0891f2db45f40279892 to your computer and use it in GitHub Desktop.

Select an option

Save dgoze/1f3704e7c913b0891f2db45f40279892 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