comments_popup_link
template function doesn't return a link, rather it just says "Comments
Off" (which is configurable).the_excerpt(). This should not be confused with
extended entry functionality.The body of the post.
You can enhance the content by using one or more of the following (depending on configuration):
<b> <i>
<strong> <em> <code> <blockquote> <p> <br>
<strike> and <a>) You can add a "teaser" at the beginning of the post by inserting the following HTML comment in your post:
<!--more-->
That is: (less-than)(exclamation)(hyphen)(hyphen)more(hyphen)(hyphen)(greater-than) exactly as you see it, no spaces.
This comment should be inserted immediately after the text that you want to be the teaser. This will cause WordPress to display only the teaser text followed by a link that says "(more...)". The reader must click on the "(more...)" link to see the rest of the post.
Regardless of whether or not you use a teaser, the body of the post may be split into one or more "pages" by adding the following HTML comment one or more times:
<!--nextpage-->
This will cause WordPress to stop displaying the post at the end of each page, and to add a "page navigation" line at the bottom of the post. The "page navigation" line looks like:
"Pages: 1 2 3 ..."
where each of the page numbers (except the current page number) is a link to the corresponding page.
A series of buttons above the top of the "Post" box that help to insert
markup in the body of the post. Most of them work like "toggles;" the first
time you click them, they insert the open tag (for example, <strong>)
and the next time you click them, they insert the close tag (</strong>).
They also have keyboard shortcuts; you can use these in most browsers by
hitting the 'alt' key (meta on Mac?) along with a letter. (See table below.)
Quicktags for "image" and "link" insert a single tag with no close-tag, so they do not function as toggles. They pop up entry boxes that ask for the information needed to insert the tag properly. Try them and see.
| Quicktag Button | Meaning | HTML Inserted | Shortcut Key |
|---|---|---|---|
| B | bold | <strong> |
alt-b |
| i | italic | <em> |
alt-i |
| u | underscore | <u> |
alt-u |
| strike | strikethrough | <del> |
alt-s |
| <p> | paragraph tag | <p> |
alt-p |
| <li> | listitem | <li> |
alt-l (lower case "L") |
| b-quote | block quote | <blockquote> |
alt-q |
| image | image tag (no toggle) | <img src="(source of image)" alt="(alternate text)"> |
alt-m |
| link | link tag | <a href="(URL)">(link text)</a> |
alt-h |
| X | close all open tags | See notes below | alt-c |
The "Close all open tags" Quicktag button (labeled "X") is cool; it will
add all required close tags at once, and in the right order. So
if you have inserted <li><em><strong><u>some
text, just click "X" or hit alt-c (for "close") and you will get
</u></strong></em></li>.