Quotes and Blockquotes

Quoting and citing are important aspects of blogging. This is to acknowledge that we bloggers are not all-knowing, and we also need other online publications and other bloggers to cite as sources. Apart from hyperlinking, we also cite text.

If a text is short enough, we can usually use the <quote> or <q> tags.

However, sometimes we need to quote longer pieces of text.

So for longer lines of code, we use the <blockquote> tag, which is, I think, self explanatory. Most themes will auto-format blockquotes so that they will look nice, and that they will stand out from the rest of the text. This means your readers won’t mistake blockquoted text for something you wrote yourself.

It’s good to keep blockquotes to a manageable level. If your entire post consists of material quoted word for word elsewhere, then you might be branded a plagiarist (if you don’t have adequate citation). You might also get penalized by the search engines for duplicate content.

Lists

This is an ordered list. Ordered lists are called such, because:

  1. They are ordered numerically or alphabetically
  2. These lists can be sequential in ascending or descending order.
  3. The tag for ordered lists is <OL>, which stands for–you guessed it–ordered lists.
  4. The world needs order in order to survive.
  5. Really, now?

Now this is an unordered list. Unordered lists are important, too, because:

  • Some believe in the chaos theory, meaning by nature, nothing is really in order.
  • There are lists wherein the order is not important. This menas everything is equal, and you just want to list down stuff to better organize your thoughts.
  • Also, designers should be mindful of laying out lists, because items that are too long tend to run off into the next line.
  • The tag for unordered lists is <UL>, which stands for–you guessed it–unordered lists.

Now you can also create nested lists, meaning lists within lists.

  1. For example, this is a line in a top-level ordered list.
    1. This is a second-level ordered list.
      • I can add items under another level, this time as an unordered list.
      • Here’s another.
      • And another one.
    2. And here’s another item under said list.
  2. Lists look stupid if you only have one item (I learned that in elementary school).
  3. So I’ve added a few more items so it looks neater.
    • And here’s another second-level list.
    • This time it’s an unordered list.

Enjoy listing!

Using the MORE Tag

One great thing with WordPress is that it allows you to break your text, so that no everything is displayed on the front page. This is good when you want to increase page views to your static pages, or when you want to prevent your home page from being too long.

So I’ve split this page into half with the MORE tag. You’ll have to click a link to read the rest of the entry.

Read more

Code

This particular tag is important to programmers or people who discuss HTML and design stuff on their blogs. When you use the <code> tag, the text enclosed is made to appear like plain HTML, and not the usual way that the text is formatted when you read them. According to Wordpress Codex,

By default, WordPress will convert unrecognized uses of < and > into characters which actually look like & lt; and & gt; (without spaces), which will “look” like a < and a > when posted. Or, if it finds the use of an HTML tag within the post, it will use the tag like it is HTML and you will have funky looking text and a messed up layout.

And here are the equivalents, when you use the code tag.

< = & lt;
> = & gt;
/ = & #47;
] = & #93;
[ = & #91;
” = & #34;
‘ = & #39;

(again, without the spaces)

So for instance, I’m explaining how to link to freewordpressthemes.com, you can say:

Free WordPress Themes