diff --git a/custom-meta-boxes.php b/custom-meta-boxes.php index 8cf7df8e..5f109ba6 100755 --- a/custom-meta-boxes.php +++ b/custom-meta-boxes.php @@ -36,13 +36,17 @@ * If resources do not load, please check the wiki for details. */ if ( ! defined( 'CMB_PATH') ) - define( 'CMB_PATH', str_replace( '\\', '/', dirname( __FILE__ ) ) ); +define( 'CMB_PATH', str_replace( '\\', '/', dirname( __FILE__ ) ) ); if ( ! defined( 'CMB_URL' ) ) - define( 'CMB_URL', str_replace( str_replace( '\\', '/', WP_CONTENT_DIR ), str_replace( '\\', '/', WP_CONTENT_URL ), CMB_PATH ) ); +define( 'CMB_URL', str_replace( str_replace( '\\', '/', WP_CONTENT_DIR ), str_replace( '\\', '/', WP_CONTENT_URL ), CMB_PATH ) ); include_once( CMB_PATH . '/classes.fields.php' ); include_once( CMB_PATH . '/class.cmb-meta-box.php' ); + +// Make it possible to add fields in locations other than post edit screen. +include_once( CMB_PATH . '/fields-anywhere.php' ); + // include_once( CMB_PATH . '/example-functions.php' ); /** @@ -124,127 +128,3 @@ function _cmb_field_class_for_type( $type ) { return false; } - -/** - * Draw the meta boxes in places other than the post edit screen - * - * @return null - */ -function cmb_draw_meta_boxes( $pages, $context = 'normal', $object = null ) { - - cmb_do_meta_boxes( $pages, $context, $object ); - - wp_enqueue_script('post'); - -} - -/** - * Meta-Box template function - * - * @since 2.5.0 - * - * @param string|object $screen Screen identifier - * @param string $context box context - * @param mixed $object gets passed to the box callback function as first parameter - * @return int number of meta_boxes - */ -function cmb_do_meta_boxes( $screen, $context, $object ) { - - global $wp_meta_boxes; - - static $already_sorted = false; - - if ( empty( $screen ) ) - $screen = get_current_screen(); - - elseif ( is_string( $screen ) ) - $screen = convert_to_screen( $screen ); - - $page = $screen->id; - - $hidden = get_hidden_meta_boxes( $screen ); - - $i = 0; - - do { - // Grab the ones the user has manually sorted. Pull them out of their previous context/priority and into the one the user chose - - if ( ! $already_sorted && $sorted = get_user_option( "meta-box-order_$page" ) ) - foreach ( $sorted as $box_context => $ids ) - foreach ( explode(',', $ids ) as $id ) - if ( $id && 'dashboard_browser_nag' !== $id ) - add_meta_box( $id, null, null, $screen, $box_context, 'sorted' ); - - $already_sorted = true; - - if ( ! isset( $wp_meta_boxes ) || ! isset( $wp_meta_boxes[$page] ) || ! isset( $wp_meta_boxes[$page][$context] ) ) - break; - - foreach ( array( 'high', 'sorted', 'core', 'default', 'low' ) as $priority ) { - - if ( isset( $wp_meta_boxes[$page][$context][$priority] ) ) { - - foreach ( (array) $wp_meta_boxes[$page][$context][$priority] as $box ) { - - if ( false == $box || ! $box['title'] ) - continue; - - $i++; - - $hidden_class = in_array($box['id'], $hidden) ? ' hide-if-js' : ''; ?> - -