This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Customize path to ACF in own plugin | |
add_filter('acf/settings/path', 'my_acf_settings_path'); | |
function my_acf_settings_path( $path ) { | |
// update path | |
$path = plugin_dir_path(__FILE__) . '/pluginname/lib/acf/'; | |
// return | |
return $path; |