* @license GPLv2 or later * @link http://www.20theme.com * @copyright 2013-2015 20Theme * * @wordpress-plugin * Plugin Name: Easy Options Framework * Plugin URI: http://www.20theme.com/plugins/easy-options-framework * Description: A simple framework which uses the WordPress Settings API makes it easy to create an options panel in any WordPress theme and plugin. * Version: 1.0.3 * Author: moyu * Author URI: http://www.20theme.com * License: GPLv2 or later * Text Domain: eof * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } if( !defined('EOF_DIR') ) { define('EOF_DIR', plugin_dir_path( __FILE__ )); } if( !defined('EOF_URL') ) { define('EOF_URL', plugin_dir_url( __FILE__ )); } /** * The core plugin class files */ require EOF_DIR . 'core/class-eof-loader.php'; ?>