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
- First numbered item
- Second numbered item
- Third numbered item
- Nested numbered item
- Another nested numbered item
- 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 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 21 | Cell 31 |
| Cell 2 | Cell 22 | Cell 32 |
Images

Image with Caption

Buttons and Links
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.
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.
