Remove path from the create/edit a post view

Been fiddling around, trying to remove the “path” info that’s shown when you create/edit a post in wordpress. Been able to remove word count and the saving draft info, but not the path thingie

This is what I’m talking about:
http://dl.dropbox.com/u/3618143/Sk%C3%A4rmavbild%202011-03-13%20kl.%2001.08.11.png

Also, the autosave-info that shows up on posts that’s being edited. “Last edited by admin” etc. Can’t seem to find that either.

Any ideas?

1 Answer
1

Use the filter tiny_mce_before_init to customise the default configuration;

function wpse_11867_tiny_mce( $config ) {
    $config['theme_advanced_path'] = false;
    return $config;
}

add_filter( 'tiny_mce_before_init', 'wpse_11867_tiny_mce' );

Check out all the options available on the Tiny MCE documentation.

Leave a Comment