|
2 | 2 |
|
3 | 3 | /* |
4 | 4 | Plugin Name: Advanced Post List |
5 | | - Version: 0.2.b2 |
| 5 | + Version: 0.2.0 |
6 | 6 | Plugin URI: http://code.google.com/p/wordpress-advanced-post-list/ |
7 | 7 | Description: Create highly customizable post lists with dynamic features. |
8 | 8 | Author: JoKeR |
|
26 | 26 | */ |
27 | 27 | /** |
28 | 28 | * @package advanced-post-list |
29 | | - * @version 0.2.b2 |
| 29 | + * @since 0.1.0 |
| 30 | + * @version 0.2.0 - Added more require functions for additional pages. |
30 | 31 | * @link http://code.google.com/p/wordpress-advanced-post-list/ Advanced Post List Homepage |
31 | 32 | */ |
32 | 33 | /*****************************************************************************/ |
|
58 | 59 | define('APL_DIR', plugin_dir_path(__FILE__)); |
59 | 60 | define('APL_URL', plugin_dir_url(__FILE__)); |
60 | 61 | //FIX ALWAYS - Update version number |
61 | | -define('APL_VERSION', '0.2.b2'); |
| 62 | +define('APL_VERSION', '0.2.0'); |
62 | 63 |
|
63 | 64 | /*****************************************************************************/ |
64 | 65 | /************************ REQUIRED FILES *************************************/ |
|
68 | 69 | require_once(APL_DIR . 'includes/Class/APLPresetObj.php'); |
69 | 70 | require_once(APL_DIR . 'includes/Class/APLCallback.php'); |
70 | 71 | require_once(APL_DIR . 'includes/APLWidget.php'); |
71 | | -require_once(APL_DIR . 'includes/Class/APLExport.php'); |
72 | | -require_once(APL_DIR . 'includes/Class/APLImport.php'); |
| 72 | +//require_once(APL_DIR . 'includes/Class/APLExport.php'); |
| 73 | +//require_once(APL_DIR . 'includes/Class/APLImport.php'); |
73 | 74 |
|
74 | 75 | /*****************************************************************************/ |
75 | 76 | /************************ LOAD HANDLER ***************************************/ |
|
0 commit comments