Skip to content

Instantly share code, notes, and snippets.

View nullvariable's full-sized avatar
☣️

Doug Cone nullvariable

☣️
View GitHub Profile
@nullvariable
nullvariable / settings.php
Last active August 29, 2015 13:58
screen options hack code
<?php
$screen = get_current_screen();
add_filter('manage_' . $screen->id . '_columns', 'my_true_false_option');
function my_true_false_option() {
return array("my_true_false_option" => __("My True/False Option", 'translation-context'));
}
?>
<table id="fake_column">