Skip to content
This repository has been archived by the owner on Dec 17, 2018. It is now read-only.

Added option to customize the URL path #655

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from

Commits on Aug 15, 2014

  1. Added option to customize the URL path

    // Initialize the metabox class
    add_action( 'init', 'be_initialize_cmb_meta_boxes', 9999 );
    function be_initialize_cmb_meta_boxes() {
    	// Custom path URL
        define( 'CMB_META_BOX_URL', trailingslashit( CUSTOM_URL_PATH ) );
        if ( !class_exists( 'cmb_Meta_Box' ) ) {
            require_once( 'lib/metabox/init.php' );
        }
    }
    Filipe F. Kalicki committed Aug 15, 2014
    Configuration menu
    Copy the full SHA
    bf3b3a6 View commit details
    Browse the repository at this point in the history
  2. Added support for translations

    Includes:
    - Default (en_US)
    - Portuguese Brazil (pt_BR)
    Filipe F. Kalicki committed Aug 15, 2014
    Configuration menu
    Copy the full SHA
    0deb3ba View commit details
    Browse the repository at this point in the history
  3. Revert "Added support for translations"

    This reverts commit 0deb3ba.
    Filipe F. Kalicki committed Aug 15, 2014
    Configuration menu
    Copy the full SHA
    74c1d6c View commit details
    Browse the repository at this point in the history