Hello,
I was looking to do the same thing and I came across your post by way of a Google search.
In case you still are trying to figure out how to do this, or anyone else comes across this, you can add markup to the wp-admin document head (ie. the <head> tag) by using the “admin_head” hook, like so:
// remove the tags section from the right sidebar
function themeslug_remove_tags_sidebar() {
echo '<style type="text/css">
#tagsdiv-post_tag {
display: none;
}
</style>';
}
add_action('admin_head', 'themeslug_remove_tags_sidebar');
Hello @websight Designs,
Finally got replies here and thanks!
I am not html or CSS expert and not really understand where to find the wp-admin document head?? But i can’t follow the step to do so, if you don’t mind to give a guideline.
Thanks
Hi,
Am I need to go through this..
Appearance >> Editor >> Theme Header (header.php) ??
The code I provided would generally be placed in your theme’s functions.php file. It could also be used in a plugin if you were creating your own plugin.