• Hi

    I found an issue with the “Disable Blog” plugin. The custom taxonomy admin page was redirected to the dashboard.
    https://wordpress.org/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.