I am using Redux Framework for theme development but I stuck on Metabox. I tried this doc https://docs.reduxframework.com/extensions/metaboxes/ but I didn't get any result.
I am unable to get the custom field on selected custom post type.
In extentions-init.php, I found:
// All extensions placed within the extensions directory will be auto-loaded for your Redux instance.
Redux::setExtensions( $opt_name, dirname( __FILE__ ) . '/extensions/' );
// Any custom extension configs should be placed within the configs folder.
if ( file_exists( dirname( __FILE__ ) . '/configs/' ) ) {
$files = glob( dirname( __FILE__ ) . '/configs/*.php' );
if ( ! empty( $files ) ) {
foreach ( $files as $file ) {
include $file;
}
}
}
It's clearly shows the custom metabox will be load from configs folder but it doesn't load.