Hello,
I have added following codes in my theme's function.php file to include the metabox plugin.
/*Inclusion of metabox plugin*/
define( 'RWMB_URL', trailingslashit( get_template_directory_uri() . '/framework/meta-box/' ) );
define( 'RWMB_DIR', trailingslashit( get_template_directory() . '/framework/meta-box/' ) );
require_once( RWMB_DIR . 'meta-box.php');
require_once( get_template_directory() . '/framework/meta-boxes.php'); /*main file where I write code */
Today I have bought metabox-group extension.Now please let me know how to include the extension in the existing plugin or anywhere else other than installation procedure.
Thanks in advance!