UW Brand

Editing pages and posts

Page vs. Post

In WordPress, you can put content on your site as either a “post” or a “page”. When you’re writing a regular blog entry, you write a post. Posts, in a default setup, appear in reverse chronological order on your blog’s home page.

In contrast, pages are for non-chronological content: pages like “About” or “Contact” would be common examples. Pages live outside of the normal blog chronology and are often used to present timeless information about your site — information that is always relevant. You can use Pages to organize and manage the structure of your website content.

More information can be found on the WordPress Codex.

Visual vs. Text

When deciding whether to use the text or visual interface the main trade-off is the ease of use or having more editing capability. The visual interface is great for beginners to WordPress who aren’t very comfortable with HTML and CSS syntax and offers an easy-to-use interface. On the other hand, the text interface offers more control with editing capability beyond the visual toolbar and is great if you have some knowledge of HTML and CSS syntax.

Visual Editor

Visual interface

You can use the visual interface to put a majority of content directly onto pages without much adjustment as shown in figure 1a. On the visual interface, there are ways to do basic content formatting like add images, embed links, and manipulate header/paragraph fonts and see them similar to how they would show up on the actual site. Shortcodes can be put into the visual box for specific features, like iframes and buttons.

This is a screenshot of the visual interface for the Rec Club Officer Resources WordPress page editor.

Figure 1a. This is the visual interface of the Rec Club Officer Resources WordPress page editor which is very similar the page itself as seen in figure 1b

This is a screenshot of the actual Rec Club Officer Resources page that the visual interface in figure 1a codes for.

This is what the actual Rec Club Officer Resources site displays for the visual interface in figure 1a.

Visual toolbar

The following briefly introduces the toolbar found when editing pages with the visual interface. The toolbar is one way to customize different aspects of a page, in the convenience of clicking a button to quickly change the features of a page.

Button Visual Description
Add Media An image of a girl pointing at something Upload visual content into Media Library
Paragraph This is a screenshot of the dropdown for the paragraph section of the visual toolbar. Changes the type of text
B Bolded text Bolds text
I Italicized text Italicizes text
  • Bullet 1
  • Bullet 2
Create bulleted list
  1. number 1
  2. number 2
Create numbered list

Blockquote

 Indented text, typically used to emphasize long quotes
Text Left align text
Text Center align text
Text Right align text
Link Links text to URL. Also underlines and turns blue
Insert Read More tag
Toolbar toggle
Make an InfoBox

 

Text Editor

Text interface

The text interface can do everything that the visual box does and beyond, using markup language to structure and format your content. The major difference is that you should have fairly proficient knowledge of HTML and CSS syntax, which will be interpreted by CMS and render the exact visual representation of what you have just written in markup. Figure 2a shows the HTML that would be typed into the text interface to display the content in figure 2b.

This is a screenshot of HTML used to code some accordions and text for the UW recreation page.

Figure 2a. This is a section of HTML in the text interface for the UW recreation page.

This is a screenshot of the text and accordions that show up from the the HTML in figure 2a.

Figure 2b. The HTML in figure 2a translate to the following CMS web content on the UW Recreation page.

Text toolbar

The following briefly introduces the toolbar found when editing pages with the text interface. The toolbar is one way to customize different aspects of a page, in the convenience of clicking a button to quickly add bits of code to a page.

This image shows the toolbar at the top of the editing box for the text interface.

Button Code Description
Add Media <img class=”alignment” src=”link” alt=”text”> Upload visual content into Media Library
b <strong> … </strong> Bolds text
i <em> … </em> Italicizes text
link <a href=”link”>text</a> Links text to URL. Also underlines and turns blue
b-quote <blockquote> … </blockquote> Indented text, typically used to emphasize long quotes
del <del> … </del> Strikes through text
ins <ins> … </ins> Underline text (only – no link)
img <img> … </> Shortcut to add just image
ul <ul> … </ul> Create bulleted list
ol <ol> … </ol> Create numbered list
li <li> … </li> Add each set of code (with text/content) for each bullet in a bulleted or numbered list.