wvnderlab-agency / wp-disable-emojis
A simple WordPress mu-plugin to disable emojis.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:wordpress-muplugin
pkg:composer/wvnderlab-agency/wp-disable-emojis
Requires
- php: >=8.0
Requires (Dev)
- wp-coding-standards/wpcs: ^3.0
This package is not auto-updated.
Last update: 2026-01-14 18:50:55 UTC
README
Installation
Via Composer
composer require wvnderlab-agency/wp-disable-emojis
Via FTP
- Download the repository zip file.
- Unzip the file.
- Upload the unzipped folder to the
/wp-content/mupluginsor/wp-content/plugins/directory on your server. - Navigate to the 'Plugins' section in your WordPress admin dashboard.
- Find 'Disable emojis' in the list and click 'Activate'.
Via WordPress Admin Dashboard
- Download the repository zip file.
- Navigate to the 'Plugins' section in your WordPress admin dashboard.
- Click 'Add New' and then 'Upload Plugin'.
- Choose the downloaded zip file and click 'Install Now'.
- After installation, click 'Activate Plugin'.
Usage
Filter Hooks
wvnderlab/disable-emojis/enabled (Default: true)
This filter allows you to disable the plugin functionality.
// disable the plugin functionality add_filter( 'wvnderlab/disable-emojis/enabled', '__return_false' );
Development
Install Dependencies
composer install
Analyse Code-Quality with WP-Coding-Standards
composer analyze
Refactor Code along WP-Coding-Standards
composer refactor