https://github.com/bopdesign/bop-mu-plugin
A helper plugin for actions and filters to modify WP functionality, and enhance security.
https://github.com/bopdesign/bop-mu-plugin
mu-plugin wordpress
Last synced: about 2 months ago
JSON representation
A helper plugin for actions and filters to modify WP functionality, and enhance security.
- Host: GitHub
- URL: https://github.com/bopdesign/bop-mu-plugin
- Owner: bopdesign
- License: agpl-3.0
- Created: 2025-01-13T15:46:22.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-03-18T02:51:33.000Z (2 months ago)
- Last Synced: 2025-03-18T03:32:54.648Z (2 months ago)
- Topics: mu-plugin, wordpress
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bop-mu-plugin
A helper plugin for actions and filters to modify WP functionality, and enhance security.Use the `/includes` directory to declare any theme functionality. All files in this directory are imported inside of `bop-mu-plugin.php`.
## Directories
The `/includes` directory is organized into files based on the functionality/purpose of the code. These files can be modified as needed, but the following structure is recommended:
```text
includes/
└─── admin/ (admin setup, hooks and filters.)
└─── blocks/ (hooks and functions that override blocks and Gutenberg behavior)
└─── core/ (core plugin functionality)
└─── overrides/ (hooks and functions that override the behavior of WP Core)
└─── security/ (theme security hardening hooks)
```