I am using wordpress 3.0 and twenty ten (default theme) Well I want to remove from comment box suggest me thanks in advance
Going by this post on the Wordpress forums, you open functions.php and add this code to the bottom: function mytheme_init() { add_filter('comment_form_defaults','mytheme_comments_form_defaults'); } add_action('after_setup_theme','mytheme_init'); function mytheme_comments_form_defaults($default) { unset($default['comment_notes_after']); return $default; } Code (markup):
Thanks its work for me...Thank u very much one more question how can i rename "home" from navigation link as it is difficult to find "home" in header.php
By creating a custom menu, which is really easy with the new Menu Editor. Basically, all you need to do is this: 1. Login and go to Dashboard->Appearance->Menus. 2. Create a custom menu and make some links for it. 3. Drag and drop the links to change their order. 4. Save the menu. So simple it's boring!
The new Wordpress 3.0 is great - the Menu Editor makes life hell of a lot easier without the need for having plug-ins to override the menu settings. You can change the 'Title' or any menu link using the menu editor. Great addition to the software!