Fires before TablePress is loaded.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: TablePress Extension: Larger ID column | |
Plugin URI: https://tablepress.org/ | |
Description: Custom Extension for TablePress to increase the size of the ID column on the "List of Tables" | |
Version: 1.0 | |
Author: Tobias Bäthge | |
Author URI: https://tobias.baethge.com/ | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Some small WordPress debug helpers | |
*/ | |
/** | |
* Utitily functions for dumping variables | |
*/ | |
function dump( $var, $name = '' ) { | |
echo '<pre>'; |