Skip to content

Instantly share code, notes, and snippets.

View danielpost's full-sized avatar

Daniel Post danielpost

View GitHub Profile
@danielpost
danielpost / acf-options.php
Last active May 6, 2020 15:28
ACF Wrapper - easier way to register ACF fields using PHP
<?php
$reusable_checkbox_field = array(
'type' => 'checkbox',
'choices' => array(
'red' => __('Red', THEME_SLUG),
'white' => __('White', THEME_SLUG),
'blue' => __('Blue', THEME_SLUG),
),
);