Skip to content

Instantly share code, notes, and snippets.

View zlink's full-sized avatar

Zzz1丶 zlink

View GitHub Profile
@zlink
zlink / function.php
Created February 9, 2022 07:25 — 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;
}