Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Including ACF in a custom theme or plugin

// customize ACF path
add_filter('acf/settings/path', 'my_acf_settings_path');
function my_acf_settings_path( $path ) {
    $path = get_stylesheet_directory() . '/inc/advanced-custom-fields-pro/';
    return $path;
}
// customize ACF dir
add_filter('acf/settings/dir', 'my_acf_settings_dir');
function my_acf_settings_dir( $dir ) {
    $dir = get_stylesheet_directory_uri() . '/inc/advanced-custom-fields-pro/';
    return $dir;
}
// Include ACF
include_once( get_stylesheet_directory() . '/inc/advanced-custom-fields-pro/acf.php' );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Including #ACF #custom #theme #plugin
ADD COMMENT
Topic
Name
2+3 =