Skip to content

Instantly share code, notes, and snippets.

View nickalexej's full-sized avatar

Nick Alexej nickalexej

View GitHub Profile
@nickalexej
nickalexej / function.php
Created January 31, 2021 18:44 — forked from mattclements/function.php
Wordpress Disable Comments (add to function.php)
<?php
add_action('admin_init', function () {
// Redirect any user trying to access comments page
global $pagenow;
if ($pagenow === 'edit-comments.php') {
wp_redirect(admin_url());
exit;
}