Visual Editor Versus Text Editor in our WP Post

0

When we writing post in WordPress Post, we have the option of using the Visual mode of editor or Text mode of the editor. By the use of visual mode lets you see your post as is, while the use of Text mode shows you the code and replaces the WYSIWYG editor buttons with quicktags. These quicktags are explained as follows.

  • b – <strong></strong> This HTML tag is use for convert simple text into bold text .
  • i – <em></em> This HTML tag is use for convert simple text into italicize text.
  • b-quote – <blockquote></blockquote> This HTML tag to distinguish quoted text to other text.
  • del – <del></del> This HTML tag to label text considered deleted from a post.This tag will show Horizontal line over the selected text.
  • link – <a href=”http://example.com”></a> This HTML tag to create a hyperlink in our post where we want to show.
  • ins – <ins></ins> This HTML tag to label text considered inserted into a post. This tag will display as underlined text.
  • ul – <ul></ul> This HTML tag will insert an unordered list, or wrap the selected text in same. An unordered list will typically be a bulleted list of items.
  • ol – <ol></ol>This HTML tag will insert a numbered list, or wrap the selected text in same. Each item in an ordered list is typically numbered.
  • li – <li></li> This HTML tag will insert or make the selected text a list item.
  • code – <code></code> This HTML tag for preformatted styling of text. Generally sets text in a monospaced font, such as Courier.
  • more – <!–more–> This  WP tag that breaks a post into “teaser” and content sections. Type a few paragraphs, insert this tag, then compose the rest of your post. On your blog’s home page you’ll see only those first paragraphs with a hyperlink ((more…)), which when followed displays the rest of the post’s content.
  • page – <!–nextpage–> This WP tag similar to the more tag, except it can be used any number of times in a post, and each insert will “break” and paginate the post at that location. Hyperlinks to the paginated sections of the post are then generated in combination with the wp_link_pages() or link_pages() template tag.

 

Share.