Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Created December 24, 2012 15:15
Show Gist options
  • Save rosshanney/4369611 to your computer and use it in GitHub Desktop.
Save rosshanney/4369611 to your computer and use it in GitHub Desktop.
Allows id attribute on div tags
<?php
/*
Plugin name: Allow id attribute on div tags
*/
function gce_allow_id_on_div() {
global $allowedposttags;
$allowedposttags['div']['id'] = true;
}
add_action( 'init', 'gce_allow_id_on_div' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment