can't get values
-
I created a simple empty theme. But not get any value.
mytheme
– index.php
– style.css
– functions.php
– ReduxCore (folder)this is in index.php
<?php //empty
this is in style.css
/* Theme Name: empty Version: 1.0.0 License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Text Domain: empty Tags: black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready */
this is in functions.php
/** * Empty Theme * * @author empty * @since 1.0.0 * @package empty */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * ReduxFramework * * @since 1.0.0 * @return void */ if ( !class_exists( 'ReduxFramework' ) && file_exists( dirname( __FILE__ ) . '/ReduxCore/framework.php' ) ) { require_once( dirname( __FILE__ ) . '/ReduxCore/framework.php' ); } $opt_name = "mytheme_options"; $theme = wp_get_theme(); $args = array( 'opt_name' => $opt_name, 'display_name' => $theme->get( 'Name' ), 'display_version' => $theme->get( 'Version' ), 'allow_sub_menu' => true, 'menu_title' => __( 'Options', 'empty' ), 'page_title' => __( 'Custom Options', 'empty' ), 'menu_icon' => '', 'settings_api' => 'true', 'admin_bar' => false, 'dev_mode' => true, 'output' => true, ); Redux::setArgs( $opt_name, $args ); Redux::setSection( $opt_name, array( 'title' => __( 'Theme Options', 'empty' ), 'id' => 'theme_options', 'customizer_width' => '400px', 'icon' => 'el el-adjust-alt' ) ); Redux::setSection( $opt_name, array( 'title' => __( 'Title', 'empty' ), 'id' => 'content-title', 'subsection' => true, 'fields' => array( array( 'id' => 'main-title', 'type' => 'text', 'title' => __( 'Main Title', 'empty' ), 'subtitle' => __( 'Main Title', 'empty' ), ), ) ) ); global $mytheme_options; echo $mytheme_options['main-title']; print_r($mytheme_options);
result: nothing..
Admin screenshot: [https://i.hizliresim.com/VEA9kB.png](url)
Redux Version: 3.6.1
Wordpress Version: 4.6don’t see anything.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘can't get values’ is closed to new replies.