From 939ef2177e6d4fd3ca6bc4fe6916252cf7a7006b Mon Sep 17 00:00:00 2001 From: lechuck Date: Sun, 23 Nov 2014 17:45:40 +0000 Subject: [PATCH] Small workaround to fix simplyexclude plugin broken with wordpress 4 --- wp-content/plugins/simply-exclude/simplyexclude.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/plugins/simply-exclude/simplyexclude.php b/wp-content/plugins/simply-exclude/simplyexclude.php index 833ec386b..325a6e9fb 100644 --- a/wp-content/plugins/simply-exclude/simplyexclude.php +++ b/wp-content/plugins/simply-exclude/simplyexclude.php @@ -54,7 +54,7 @@ class SimplyExclude add_action( 'wp_ajax_se_update', array(&$this, 'se_ajax_update') ); // Used to limit the categories displayed on the home page. Simple - add_filter('pre_get_posts', array(&$this,'se_filters'), 999); + add_filter('pre_get_posts', array(&$this,'se_filters')); } function admin_init_proc() -- GitLab