Skip to content

Instantly share code, notes, and snippets.

View TobiasBg's full-sized avatar

Tobias Bäthge TobiasBg

View GitHub Profile
<?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/
*/
@TobiasBg
TobiasBg / tablepress-datatables-footercallback.php
Last active August 29, 2015 14:13
DataTables footerCallback Extension
<?php
/*
Plugin Name: TablePress Extension: Custom "footerCallback"
Plugin URI: http://tablepress.org/extensions/
Description: Custom Extension for TablePress to add a "footerCallback"
Version: 1.0
Author: Tobias Bäthge
Author URI: http://tobias.baethge.com/
*/
add_filter( 'tablepress_datatables_parameters', 'tablepress_datatables_custom_footercallback', 10, 4 );
@TobiasBg
TobiasBg / wp-debug-helpers.php
Last active January 1, 2016 09:39
Some small WordPress debug helpers
<?php
/**
* Some small WordPress debug helpers
*/
/**
* Utitily functions for dumping variables
*/
function dump( $var, $name = '' ) {
echo '<pre>';