-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathibericode-mods.php
More file actions
28 lines (25 loc) · 875 Bytes
/
ibericode-mods.php
File metadata and controls
28 lines (25 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/*
Plugin Name: ibericode mods
Description: a collection of commonly needed WordPresss modifications or enhancements
Author: Danny van Kooten
Version: 1.0
Author URI: https://dannyvankooten.com/
Private: True
Requires at least: 6.5
Requires PHP: 8.3
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
if (PHP_VERSION_ID < 80300) {
return;
}
require __DIR__ . '/includes/allow-svg-uploads.php';
require __DIR__ . '/includes/noindex-archive-pages.php';
require __DIR__ . '/includes/disable-rest-api-users-endpoint.php';
require __DIR__ . '/includes/purge-bunny-cdn-cache.php';
require __DIR__ . '/includes/set-cache-headers.php';
require __DIR__ . '/includes/protect-wp-login.php';
require __DIR__ . '/includes/smtp-mailer.php';
require __DIR__ . '/includes/stop-comment-spam.php';
require __DIR__ . '/includes/disable-xmlrpc.php';