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 | |
// alter tinymce body classes | |
function mss_tiny_mce_before_init($init_array) { | |
// accessing global variable post | |
global $post; | |
$title = strtolower ($post->post_title); | |
if($title=='home'){ | |
$init_array['body_class'] = $post->post_title; | |
} |