Skip to content

Instantly share code, notes, and snippets.

View dechowdev's full-sized avatar
🚴‍♂️
Office working!

Lucas Dechow dechowdev

🚴‍♂️
Office working!
View GitHub Profile
@dechowdev
dechowdev / gist:5848536
Created June 24, 2013 08:19
ACF Retrieve Field object: http://support.advancedcustomfields.com/discussion/290/field-label-on-frontend/p1 Code by Elliot Condon. This is simply a port, and showcase of the code, for reference by you and me.
<?php
function get_field_object($field_name,$post_id = false)
{
global $post, $acf;
if(!$post_id)
{
$post_id = $post->ID;
}