Skip to content

Instantly share code, notes, and snippets.

@JustinSainton
Created November 18, 2015 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JustinSainton/37326773b4c3ac3c94db to your computer and use it in GitHub Desktop.
Save JustinSainton/37326773b4c3ac3c94db to your computer and use it in GitHub Desktop.
<?php
add_action( 'admin_head-options-media.php', function() {
register_column_headers( 'random-test-headers', array(
'name' => 'Name',
'next-column' => 'Next Column'
) );
add_action( 'admin_notices', function() {
print_column_headers( 'random-test-headers' );
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment