This part comes from the function comment_form()
which is called by your theme, probably in comments.php
:
'comment_notes_after' => '<p class="form-allowed-tags">'
. sprintf( __(
'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags
and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' )
. '</p>',
You can filter it out with a simple plugin:
<?php
/*
Plugin Name: Remove Markup Notice on Comment Form
*/
add_filter( 'comment_form_defaults', 'wpse_41181_remove_markup_notice', 10, 1 );
function wpse_41181_remove_markup_notice( $strings )
{
$strings['comment_notes_after'] = '';
return $strings;
}
How you get a better description … I don’t know. I’m sure there is a FAQ for that available. Aren’t there settings in /wp-admin/
for this module?
Related Posts:
- Add Link Text Back to Insert/edit link Box
- plugin admin subpage title and links in menu not highlited at current page
- Add the title attribute to links
- remove the title attribute from links [closed]
- Disable title link in the backend for non-admins
- Get youtube link title in post title
- Get parent page url to show up when it is in child pages
- Why is there a link tag with rel “profile” pointing to gmpg.org?
- How to use wpLink without editor?
- Add CSS Class to Link in TinyMCE editor
- How to print translation supported text with HTML URL
- Get the prev / next page links only (not title, etc)
- How to re-enable the links manager?
- Wondering how to turn your firefox bookmarks into a WordPress blog?
- How can I link to the most recent post in a category?
- Links redirecting to localhost after migration to server
- Is it possible to link to draft pages?
- How can I find all internal links that are pointing to post/page?
- Creating a Link Directory using WordPress?
- Count and show Clicks on external links in a single page/post
- How to use wp_rel_nofollow to add nofollow to external links only?
- get_category_link() is returning nothing
- How to display page title+link of page created by user
- Is there any way to set default for “Insert/Edit Link” to “Open link in new window”?
- root-relative links for multiple parked domains
- Get link value only from the_content()?
- How to splice in wp_links links into the loop?
- widget to output a link to archive view
- Is there an easy way to create a links index page?
- Can’t add a class to links in the visual editor since WP 3.1?
- What is the canonical way to link to pages?
- how can i add a menu link that goes to an external page
- Remove all links to a specific website
- HTTPS page link in menu
- How do I remove or disable “Or link to existing content” in “insert link” dialogue?
- Retrieving all Links from a Post?
- Link Category Description
- Auto-embed link info from URLs in link post format?
- programatically change href to onclick=window.open
- Disable automatic content hyperlinking
- Open link in a new tab checked by default when adding a new link in visual post editor
- Deep linking to an accordion tab with Visual Composer
- How come my first blog post and my home page have the same title?
- Setting a page link in the footer?
- How to add/change a value of $wpdb property/var?
- Need advice on how to add links in users profile page?
- Generate Random Post Links Somewhere in the post
- Customized title tag for each page in pagination?
- Why doesn’t YoastSEO allow me to set the title/description for the home page? [closed]
- How to hide a customization link themes menu in wordpress?
- Getting only the most recent bookmark?
- WordPress links/bookmarks – need to urlencode because spaces are getting stripped
- Custom Post Type archive link in WYSIWYG editor
- How to list all external URLs that I have posted on my WordPress blog?
- How do I make my navigation bar link to an external page?
- Plugin that inserts favicon next to links
- Create anchor from Wysiwyg editor
- Is there any way of changing the post order via user click?
- Get post / page ID from ACF Link field
- Creating a navigation link to my front-page
- Change Site Title and Description html tags if not home page
- Add title, post content, and category like add_post_meta and update_post_meta
- How to remove author name and link from a shared link preview?
- wp_get_attachment_link to add title attribute to link tag around image
- Can I generate then display a mixed list of linked and unlinked terms
- Relative links for performance?
- Make page tab link to pdf
- Dont’t change active Button while I’m listing a category?
- How to automatically remove links from WordPress Biographical Info?
- How to change server name on WordPress Installation?
- How to prevent a page from being linked in the menu/crossbar
- How do i set the read more link?
- Plugin for wikipedia style references in WP?
- Problem creating an edit link for a custom post type
- How to convert all links to no follow links of particlular section of a webpage
- Header style different on home and remaining pages
- Linking from Menu and a Page to the latest post from a specific category
- After duplicating site to a sub folder, links send user to original site
- Automaticly replace a link with other “new link”
- Links are not working on All Plugins Page
- How to add a WordPress page with multiple picture links?
- Enumerating over a category of links
- Is there a way to hide WordPress behind a web visible directory?
- Twitter links in widget don’t work?
- Links in nonalphabetic order
- Copy button for anchor link
- Removing Title From Links to Site
- How to automatically nofollow a set domains? (I seem to have half of the answer)
- WordPress links https overwrite issue
- My custom link works only on home page
- Read more link to external webpage
- Change Read More in Child theme
- Add text excerpt and pictures to hyperlinks?
- Default Link for TinyMCE “Add Link”
- WordPress changes URL?
- How to apply default post categories to link manager plugin
- Parent/child pages and link structure the right way
- How do I get link URLs from the WordPress links backend into an array?
- Link below the footer removal
- How to change all external links to “nofollow” but only for Contributor role?