For WordPress.com sites
You must have a business plan at WordPress.com in order to install Baseline.
For self-hosted sites
The source code for the theme is available at GitHub.
My answers to the questions from May 4, 2025:
Other problems I've noticed
like this isn't very distinguishable from normal text (issue on GitHub).I've applied the single column layout proposed by Christy Nyiri. I personally think it looks fantastic.
Here are some WordLand styles.
This is a block quote. (This doesn't seem to be styled yet.)
Bold, italics, underlined (hmm, it's not underlined).
An ordered shopping list:
Notes as an unordered list:
Here's a paragraph that appears under the unordered list.
This is a paragraph of text that comes above the list. These five random items were generated by AI.
And this is a paragraph to finish this list.
It looks like WordPress is putting 22 px top and bottom margin on the paragraphs and the ordered list, and 18 px top and bottom between the list items (actually the margin is on the p element within the li).
Here are the same items as an unordered list.
And finally some text as a paragraph that appears below the list.
For Change #5, I once again used an add_filter function to replace the HTML generated by WordPress, this time for the next/prev links. The links show only an arrow at 1.5em (24 px), no underline, with the post title in the title attribute of the anchor tag so it shows up as a tool tip.
For Change #10, since we can include PHP code in the theme, we don't need to use JavaScript to filter out the Uncategorized category. We can use an add_filter function on the get_the_terms hook in functions.php to remove Uncategorized before the wp:post-terms block displays the categories.
The block also has a parameter for the prefix to the displayed list, so we changed it from "Posted in " to "Categories: ".