Lists are a great way to present information. The WordPress Editor offers two main types of lists: numbered (ordered) lists and bulleted (unordered) lists.
Both types of lists make your content easier to read and more engaging. Lists are the best way to organize lengthy content into more digestible chunks. Let’s explore each type with some examples.
Numbered Lists: Also known as ordered lists
Numbered lists are ideal for presenting step-by-step instructions or sequential processes. Here’s an example:
- Gather all ingredients
- Preheat the oven to 350°F (175°C)
- Put the oven rack in the middle
- Wait 10-15 minutes for the oven to preheat
- Mix dry ingredients in a big bowl
- Mix wet ingredients in another bowl
- Slowly add wet mixture to dry ingredients
To create an ordered list press ⌃ + ⌥ + O or put your text between <ol>
and <li>
tags.
<ol> <li>Gather all ingredients</li> <li>Preheat the oven to 350°F (175°C) <ol> <li>Put the oven rack in the middle</li> <li>Wait 10-15 minutes for the oven to preheat</li> </ol> </li> <li>Mix dry ingredients in a big bowl</li> <li>Mix wet ingredients in another bowl</li> <li>Slowly add wet mixture to dry ingredients</li> </ol>
Bulleted Lists: Also known as unordered lists
Bulleted lists are great for lists where order doesn’t matter. Here’s an example:
- Fresh produce options:
- Local vegetables
- Organic fruits
- Seasonal items
- Fresh breads and pastries
- Fancy cheeses and meats
- Special sauces and condiments
To create an ordered list press ⌃ + ⌥ + U or put your text between <ul>
and <li>
tags.
<ul> <li>Fresh produce options: <ul> <li>Local vegetables</li> <li>Organic fruits</li> <li>Seasonal items</li> </ul> </li> <li>Fresh breads and pastries</li> <li>Fancy cheeses and meats</li> <li>Special sauces and condiments</li> </ul>