Skip to content

Instantly share code, notes, and snippets.

@merianos
Created December 5, 2015 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merianos/cbe9825ff243489b4b65 to your computer and use it in GitHub Desktop.
Save merianos/cbe9825ff243489b4b65 to your computer and use it in GitHub Desktop.
Loading custom fields in PageBuilder
function load_custom_fields() {
$base_dir = dirname( __FILE__ ) . '/fields/';
foreach ( glob( $base_dir . '*.php' ) as $file ) {
require_once $file;
}
}
add_action( 'admin_init', 'load_custom_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment