Skip to content

Instantly share code, notes, and snippets.

@ipokkel
ipokkel / wpcs_windows_10.md
Last active September 17, 2022 17:05
PHPCS + WordPress Coding Standards on Windows 10
@tillkruss
tillkruss / force-color-scheme.php
Last active October 9, 2024 00:35
Enforce a specific WordPress admin color scheme.
<?php
add_action( 'admin_init', function() {
// remove the color scheme picker
remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );
// force all users to use the "Ectoplasm" color scheme
add_filter( 'get_user_option_admin_color', function() {
return 'ectoplasm';