Functional plugin implementation.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1010 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2004-03-25 08:10:26 +00:00
parent 82605b706b
commit e733249e69
2 changed files with 50 additions and 14 deletions

View File

@@ -68,6 +68,12 @@ if (get_settings('hack_file')) {
require(ABSPATH . '/my-hacks.php');
}
if (!strstr($_SERVER['REQUEST_URI'], 'wp-admin/plugins.php') && get_settings('active_plugins')) {
$current_plugins = explode("\n", (get_settings('active_plugins')));
foreach ($current_plugins as $plugin) {
if (file_exists(ABSPATH . 'wp-content/plugins/' . $plugin))
include(ABSPATH . 'wp-content/plugins/' . $plugin);
}
}
?>
?>