Skip to content

Instantly share code, notes, and snippets.

@soderlind
Last active March 22, 2025 21:39
Show Gist options
  • Save soderlind/7face5818b32317e0002870fd3600005 to your computer and use it in GitHub Desktop.
Save soderlind/7face5818b32317e0002870fd3600005 to your computer and use it in GitHub Desktop.
Sticky WP Table Header

Sticky WP Table Header

This plugin will make the table header sticky when you scroll down.

Save file in wp-content/mu-plugins

position: sticky is supported by most browsers.

<?php
/**
* Plugin Name: Sticky WP Table Header
*
* Description: This plugin will make the table header sticky when you scroll down.
* Version: 1.0
* Author: Per Soderlind
* Author URI: http://soderlind.no
*/
add_action( 'admin_init', function () {
$css = <<<CSS
.wp-list-table thead {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 999;
background-color: #fff;
}
:has(#wpadminbar) .wp-list-table thead {
top: 32px;
}
CSS;
wp_add_inline_style( 'wp-admin', $css );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment