Last active
August 28, 2015 16:50
-
-
Save MatthewEppelsheimer/0deeae286f905b2c4c4f to your computer and use it in GitHub Desktop.
Enable TablePress shortcodes in WordPress' administrative back-end
This file contains 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 | |
/** | |
* Support TablePress shortcodes in the administrative back-end | |
* | |
* Hook to `admin_init`. | |
* | |
* @author Matthew Eppelsheimer | |
*/ | |
function rli_support_tablepress_shortcodes_in_admin() { | |
// Bail if TablePress isn't active | |
if ( ! class_exists( 'TablePress' ) ) { | |
return; | |
} | |
// Load the frontend controller | |
TablePress::load_controller( 'frontend' ); | |
// class methods aren't static so we need an instance to call them | |
$controller = new TablePress_Frontend_Controller(); | |
// Register the shortcode | |
$controller->init_shortcodes(); | |
// Load table CSS | |
add_action( 'admin_enqueue_scripts', array( $controller, 'enqueue_css' ) ); | |
} | |
add_action( 'admin_init', 'rli_support_tablepress_shortcodes_in_admin', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment