Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save iamgaby7521/555bda534ca271cd1f0bfce307f9c9ac to your computer and use it in GitHub Desktop.
Save iamgaby7521/555bda534ca271cd1f0bfce307f9c9ac to your computer and use it in GitHub Desktop.
Sublime Text 2 snippet for Advanced Custom Fields 'get field'
<snippet>
<content><![CDATA[
\$${1:varname} = get_field('${2:field_name}', '${3:\$post_id}');
if (\$${1:varname} != '') {
echo \$${1:varname};
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>acfgetfield</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment