Skip to content

Instantly share code, notes, and snippets.

@nashvillegeek
Created April 22, 2013 18:05
Show Gist options
  • Save nashvillegeek/5437158 to your computer and use it in GitHub Desktop.
Save nashvillegeek/5437158 to your computer and use it in GitHub Desktop.
Sublime Text 2 snippet for Advanced Custom fields - variation of acf-option for numeric entries conditional
<snippet>
<content><![CDATA[
\$${1:varname} = get_field('${2:field_name}', 'option');
if ((\$${1:varname} != '') && ((\$${1:varname} != '0'))) {
echo \$${1:varname};
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>acfoption-numeric</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