Open graphicagenda opened 11 years ago
Theme Independent Installation of your ACF add-on
function acf_add_extended_plugins() { if(function_exists('register_field')) { register_field('Gravity_Forms_field', dirname(File) . '/custom-fields/gravity_forms.php'); } }
add_action('init', 'acf_add_extended_plugins');
and then just throw in the custom-fields inside mu-plugins
Theme Independent Installation of your ACF add-on
in file wp-acf-addons.php
function acf_add_extended_plugins() { if(function_exists('register_field')) {
register_field('Gravity_Forms_field', dirname(File) . '/custom-fields/gravity_forms.php'); } }
add_action('init', 'acf_add_extended_plugins');
and then just throw in the custom-fields inside mu-plugins