Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created August 17, 2012 13:38
Show Gist options
  • Save rosshanney/3378745 to your computer and use it in GitHub Desktop.
Save rosshanney/3378745 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin name: GCE Thickbox Thingy
*/
function gce_enqueue_thickbox() {
wp_enqueue_script( 'thickbox' );
wp_enqueue_style( 'thickbox' );
}
add_action( 'wp_enqueue_scripts', 'gce_enqueue_thickbox' );
function gce_allow_ids() {
global $allowedposttags;
$allowedposttags['div']['id'] = true;
}
add_action( 'init', 'gce_allow_ids' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment