Changeset 1326307
- Timestamp:
- 01/12/2016 07:57:00 AM (10 years ago)
- Location:
- easy-events-wp/trunk
- Files:
-
- 3 edited
-
easy-events-wp.php (modified) (2 diffs)
-
includes/setting-admin.php (modified) (1 diff)
-
template-builder/single.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-events-wp/trunk/easy-events-wp.php
r1326294 r1326307 5 5 * Plugin URI: https://wparena.com 6 6 * Description: Best simple and useful WordPress Event Plugin. 7 * Version: 1.1. 27 * Version: 1.1.3 8 8 * Author: WPArena 9 9 * Author URI: https://wparena.com … … 23 23 define( 'EASY_EVENT_URI', untrailingslashit( plugins_url( '/', __FILE__ ) ) ); 24 24 define( 'EASY_EVENT_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); 25 define( 'EASY_EVENT_VERSION', '1.1. 2' );25 define( 'EASY_EVENT_VERSION', '1.1.3' ); 26 26 27 27 if ( ! class_exists( 'Easy_Event' ) ) : -
easy-events-wp/trunk/includes/setting-admin.php
r1326294 r1326307 29 29 function easy_event_display_input_content_template() { 30 30 $single_template = get_option( 'easy_event_single_template' ); 31 if ( $single_template == '' || $single_template == false ) { 32 $single_template = file_get_contents( EASY_EVENT_DIR . 'template-default/single-content.php' ); 33 } 31 34 32 35 ?> -
easy-events-wp/trunk/template-builder/single.php
r1326294 r1326307 45 45 if ( get_post_type() == 'easy_event' ) { 46 46 $single_template = get_option( 'easy_event_single_template' ); 47 if ( $single_template == '' || $single_template == false ) { 48 $single_template = file_get_contents( EASY_EVENT_DIR . 'template-default/single-content.php' ); 49 } 47 50 48 51 $post_id = get_the_ID();
Note: See TracChangeset
for help on using the changeset viewer.