first round of fixes #255

This commit is contained in:
Jonathan Labreuille
2015-12-07 16:54:08 +01:00
parent c0ba218949
commit 9fb04bc3c0
10 changed files with 57 additions and 50 deletions

View File

@@ -28,6 +28,7 @@ class Initializer {
$this->setupChangelog();
$this->setupPublicAPI();
$this->runQueueSupervisor();
$this->setupShortcodes();
$this->setupHooks();
$this->setupImages();
}
@@ -125,6 +126,10 @@ class Initializer {
$changelog->init();
}
function setupShortcodes() {
$shortcodes = new Shortcodes();
$shortcodes->init();
}
function setupHooks() {
$hooks = new Hooks();
$hooks->init();