Customize Administration Panels
-
Hi everyone…
Upon entering the Administration Panels, WordPress defaults to the Write > Post SubPanel you will use to write new Posts. While you are writing that Post, you can also create new Categories, new Tags, and new Custom Fields…
It’s possible customize Post SubPanel to hide creation of new Categories and/or of new Tags…
Some modification like below:in post-new.php (WP 2.5.1), in last lines i would change with conditional tags for bolder code below
<?php
// Show post form.
$post = get_default_post_to_edit();
if ( is_user(Admin_my_nick) {
include(‘edit-form-advanced.php’);
} else {
include(‘mod_of_edit-form-advanced.php‘);
}?>
It’s possible?
I searching for some like is_user condition… but i don’t find it…Thank you
g
- The topic ‘Customize Administration Panels’ is closed to new replies.