forked from EddieRingle/wicketpixie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
executable file
·42 lines (34 loc) · 976 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* WicketPixie v2.0
* (c) 2006-2009 Eddie Ringle,
* Chris J. Davis,
* Dave Bates
* Provided by Chris Pirillo
*
* Licensed under the New BSD License.
*/
$optpre = 'wicketpixie_';
define('SIMPLEPIEPATH',ABSPATH.'wp-includes/class-simplepie.php');
/*
* WicketPixie Version Number
* pre = prealpha (experimental, no guarantees that anything works)
* a = alpha (unstable, most likely broken)
* b = beta (testing, works but may have bugs)
* rc = release candidate (stable testing, minor issues are left)
* no suffix = stable release (hopefully no bugs!)
*/
define('WIK_VERSION',"2.0-pre");
/* Useful functions */
require_once('app/functions.php');
/* Dynamic (Widget-enabled) Sidebar */
enable_widgetized_sidebar();
/* Admin Pages */
load_admin_pages();
/* Version number in admin footer */
show_version_in_admin_footer();
/* Status updates */
require_once( TEMPLATEPATH .'/app/update.php');
/* Widgets */
load_widgets();
?>