PHPackages                             wvnderlab-agency/wp-disable-tags - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. wvnderlab-agency/wp-disable-tags

ActiveWordpress-muplugin[Utility &amp; Helpers](/categories/utility)

wvnderlab-agency/wp-disable-tags
================================

A simple WordPress mu-plugin to disable tags.

0.1.0(1mo ago)11↓100%MITPHPPHP &gt;=8.0CI passing

Since Apr 29Pushed 1mo agoCompare

[ Source](https://github.com/wvnderlab-agency/wp-disable-tags)[ Packagist](https://packagist.org/packages/wvnderlab-agency/wp-disable-tags)[ Docs](https://wvnderlab.com)[ RSS](/packages/wvnderlab-agency-wp-disable-tags/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

wp-disable-tags
===============

[](#wp-disable-tags)

[![PHP](https://camo.githubusercontent.com/cadfd7a105d5ce45a8fbd33ac50eef03267744fa8726f8916e5d5bf8044ae347/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e302b2d3737374242343f6c6f676f3d706870)](https://camo.githubusercontent.com/cadfd7a105d5ce45a8fbd33ac50eef03267744fa8726f8916e5d5bf8044ae347/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e302b2d3737374242343f6c6f676f3d706870)[![WordPress](https://camo.githubusercontent.com/45e5e89f37427f4c5f7050ab38e8ebb1e25b6af13c328859baaeb60b4cfaeb40/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f576f726450726573732d4d552d2d506c7567696e2d3231373539423f6c6f676f3d776f72647072657373)](https://camo.githubusercontent.com/45e5e89f37427f4c5f7050ab38e8ebb1e25b6af13c328859baaeb60b4cfaeb40/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f576f726450726573732d4d552d2d506c7567696e2d3231373539423f6c6f676f3d776f72647072657373)[![WP Coding Standards](https://github.com/wvnderlab-agency/wp-disable-tags/actions/workflows/wp-coding-standards.yml/badge.svg)](https://github.com/wvnderlab-agency/wp-disable-tags/actions/workflows/wp-coding-standards.yml)

- [Installation](#installation)
- [Usage](#usage)
- [Development](#development)

Installation
------------

[](#installation)

### Via Composer

[](#via-composer)

```
composer require wvnderlab-agency/wp-disable-tags
```

### Via FTP

[](#via-ftp)

1. Download the repository zip file.
2. Unzip the file.
3. Upload the unzipped folder to the `/wp-content/muplugins` or `/wp-content/plugins/` directory on your server.
4. Navigate to the 'Plugins' section in your WordPress admin dashboard.
5. Find 'Disable posts' in the list and click 'Activate'.

### Via WordPress Admin Dashboard

[](#via-wordpress-admin-dashboard)

1. Download the repository zip file.
2. Navigate to the 'Plugins' section in your WordPress admin dashboard.
3. Click 'Add New' and then 'Upload Plugin'.
4. Choose the downloaded zip file and click 'Install Now'.
5. After installation, click 'Activate Plugin'.

Usage
-----

[](#usage)

### Filter Hooks

[](#filter-hooks)

#### wvnderlab/disable-tags/enabled *(Default: true)*

[](#wvnderlabdisable-tagsenabled-default-true)

This filter allows you to disable the plugin functionality.

```
// disable the plugin functionality
add_filter( 'wvnderlab/disable-tags/enabled', '__return_false' );
```

#### wvnderlab/disable-tags/status-code *(Default: 404)*

[](#wvnderlabdisable-tagsstatus-code-default-404)

This filter allows you to set the HTTP status code returned when posts are disabled.

You can set it to standard codes like 404 (Not Found), 410 (Gone), or redirect codes like 301 (Moved Permanently) or 302 (Found).

```
// set the status code to 301 - Moved Permanently
add_filter( 'wvnderlab/disable-tags/status-code', fn() => 301 );
// set the status code to 302 - Found
add_filter( 'wvnderlab/disable-tags/status-code', fn() => 302 );
// set the status code to 307 - Temporary Redirect
add_filter( 'wvnderlab/disable-tags/status-code', fn() => 307 );
// set the status code to 308 - Permanent Redirect
add_filter( 'wvnderlab/disable-tags/status-code', fn() => 308 );
// set the status code to 410 - Gone
add_filter( 'wvnderlab/disable-tags/status-code', fn() => 410 );
```

#### wvnderlab/disable-tags/redirect-url *(Default: home\_url())*

[](#wvnderlabdisable-tagsredirect-url-default-home_url)

This filter allows you to override the redirect URL when posts are disabled and the `wvnderlab/disable-tags/status-code` filter is set to use a redirect status code (e.g., 301 or 302).

```
// override the redirect URL
add_filter( 'wvnderlab/disable-tags/redirect_url', 'YOUR_REDIRECT_URL' );
```

Development
-----------

[](#development)

### Install Dependencies

[](#install-dependencies)

```
composer install
```

### Analyse Code-Quality with WP-Coding-Standards

[](#analyse-code-quality-with-wp-coding-standards)

```
composer analyze
```

### Refactor Code along WP-Coding-Standards

[](#refactor-code-along-wp-coding-standards)

```
composer refactor
```

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance92

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

41d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0ff389f6dcac477647cab83abc65187f135c0b615687bae3172f2bb28e9297a8?d=identicon)[johninamio](/maintainers/johninamio)

---

Top Contributors

[![johninamillion](https://avatars.githubusercontent.com/u/31989151?v=4)](https://github.com/johninamillion "johninamillion (3 commits)")

---

Tags

wordpresswordpress pluginwordpress muplugin

### Embed Badge

![Health badge](/badges/wvnderlab-agency-wp-disable-tags/health.svg)

```
[![Health](https://phpackages.com/badges/wvnderlab-agency-wp-disable-tags/health.svg)](https://phpackages.com/packages/wvnderlab-agency-wp-disable-tags)
```

###  Alternatives

[rilwis/meta-box

The most powerful &amp; comprehensive plugin to create, manage, show and connect dynamic data with forms and custom fields effortlessly on WordPress.

1.2k1.8k1](/packages/rilwis-meta-box)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
