---
title: "List Extensions Ability: Get All Nexter Extension Features and Status in WordPress"
url: https://nexterwp.com/docs/nexter-list-extensions/
date: 2026-05-29
modified: 2026-05-29
author: "sandip patel"
description: "The nexter/list-extensions ability retrieves a list of all Nexter Extension features with their enabled or disabled status. Filter by active or inactive to narrow the results."
word_count: 214
---

# List Extensions Ability: Get All Nexter Extension Features and Status in WordPress

## Key Takeaways

- Nexter/list-extensions ability returns all Nexter Extension features with their enabled or disabled state.
- status parameter filters results by active, inactive, or returns all extensions when omitted.
- nexter/toggle-extension enables or disables specific extensions based on the retrieved extension key.

The **nexter/list-extensions** ability returns all Nexter Extension features with their current enabled or disabled state. You can filter results by active or inactive status. Use this ability to see which extensions are running on a site or to build a dashboard of extension states.

## Key Takeaways

The status parameter is optional. Omitting it returns all extensions regardless of state.

Accepted status values are: active, inactive, or an empty string for all.

This ability is read-only. It never changes any extension state.

Use nexter/toggle-extension to enable or disable a specific extension.

## Required Setup

This ability ships with Nexter Extension (Free). If you do not have it installed, follow the guide on how to install and activate Nexter Extension first.

## Parameters

**status** (string, optional) filters the returned list. Options: active, inactive, or empty string for all extensions.

## What It Returns

The ability returns an array of extension objects. Each object contains: **key** (the extension identifier string), **label** (display name), and **enabled** (boolean indicating whether the extension is currently active).

## When to Use This Ability

List all active extensions to confirm which features are running on a site.

Retrieve the extension key required before calling nexter/toggle-extension.

Build a site health report showing which extensions are enabled or disabled.

## Related Documentation

Toggle Extension Ability: nexter/toggle-extension

Get Performance Settings Ability: nexter/get-performance-settings

Get Security Settings Ability: nexter/get-security-settings