Skip to content

Instantly share code, notes, and snippets.

View chrisjuer's full-sized avatar

Christoph chrisjuer

  • Hindsight
  • Melbourne
View GitHub Profile
@chrisjuer
chrisjuer / include_acf.php
Last active February 13, 2018 20:43
Include Advanced Custom Fields plugin into own plugin
// 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;