Incompatible with disable blog plugin
-
Hi
I found an issue with the “Disable Blog” plugin. The custom taxonomy admin page was redirected to the dashboard.
https://www.ads-software.com/plugins/disable-blog/In order to fix this, there are a couple of filter_hooks to use from Disable Blog plugin:
// Disable redirct add_filter( 'dwpb_redirect_admin_edit_tags', function( $bool ) { return false; }, 10, 1 );
// Disable redirct on specific query add_filter( 'dwpb_redirect_edit_tax', function( $redirect ) { if ( isset( $_GET['taxonomy'] ) ) { return false; } return $redirect; }, 10, 1 );
- The topic ‘Incompatible with disable blog plugin’ is closed to new replies.