Sample Two

This is a comprehensive test post to showcase all WordPress elements and their styling. Use this post to preview and adjust your theme’s CSS.

Headings

Heading 2 (H2)

Heading 3 (H3)

Heading 4 (H4)

Heading 5 (H5)
Heading 6 (H6)

Paragraphs and Text Formatting

This is a regular paragraph with some bold text, italic text, and bold italic text. You can also have strikethrough text and inline code. Here’s a link to WordPress.org and some <mark>highlighted text</mark>.

This is another paragraph to show spacing between paragraphs. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Lists

Unordered (Bullet) List

  • First item
  • Second item with a longer description to see how it wraps
  • Third item
    • Nested item
    • Another nested item
      • Deeply nested item
  • Fourth item

Ordered (Numbered) List

  1. First numbered item
  2. Second numbered item
  3. Third numbered item
    1. Nested numbered item
    2. Another nested numbered item
  4. Fourth numbered item

Definition List

Term 1 : Definition for term 1

Term 2 : Definition for term 2 with more detailed explanation

Blockquotes

This is a blockquote. It can contain multiple sentences and should be styled differently from regular paragraphs.

This is a second paragraph within the same blockquote.

This is a blockquote with a citation.

Author Name

Code Blocks

Inline Code

Use wp_head() function in your theme’s header.php file.

Code Block

php<?php
function my_theme_setup() {
    add_theme_support('post-thumbnails');
    add_theme_support('custom-logo');
}
add_action('after_setup_theme', 'my_theme_setup');
?>

HTML Code Block

html<div class="container">
    <h1>Hello World</h1>
    <p>This is a paragraph.</p>
</div>

CSS Code Block

css.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

Tables

Header 1Header 2Header 3
Cell 1 Cell 21Cell 31
Cell 2Cell 22Cell 32

Images

A female going from college athlete to saleswoman

Image with Caption

A female going from college athlete to saleswoman
Image caption should be formatted differently from the body text.

Buttons and Links

Text Link

Separators




Special Elements

Preformatted Text

This is preformatted text.
It    preserves    spacing
and line breaks exactly
as    they    appear.

Media Elements

Embedded Content

This is where embedded content like YouTube videos, Twitter posts, or other embeds would appear.

Embed with a caption.

WordPress Specific Elements

Gallery (placeholder)

[Gallery would appear here with thumbnail images]

Custom Elements

Call-to-Action Box

Important Notice

This is a call-to-action or notice box that should stand out from regular content.

Testimonial

“This is a testimonial quote that should be styled prominently.”

Happy Customer


Testing Notes

This test post includes:

  • All heading levels (H1-H6)
  • Text formatting (bold, italic, strikethrough, inline code)
  • Ordered and unordered lists
  • Blockquotes with and without citations
  • Code blocks in multiple languages
  • Tables with headers
  • Images with and without captions
  • Links and buttons
  • Separators and special typography
  • WordPress-specific elements

Use this post to test your theme’s styling and make adjustments as needed. Check how each element appears on different screen sizes and devices.