Instead of using the “type” attribute, try adding a CSS class and styling that.
<ol>
<li>Number one</li>
<li>Number two
<ol class="lower-alpha">
<li>Lowercase a</li>
<li>Lowercase b
<ul>
<li>Paragraph 1</li>
<li>Paragraph 2</li>
</ul>
</li>
</ol>
</li>
</ol>
Then in your CSS – depending on your site setup, you may want to add Custom CSS through the Customizer, or edit a child theme:
ol.lower-alpha {
list-style-type:lower-alpha;
}
(Depending on your theme, you might or might not have to get more specific, but this would work for most cases.)
Related Posts:
- Right align a youtube video
- How to display by default only published posts/pages in the admin area?
- List latest posts in WP-Admin
- How to put last edited entry on top of the blog-post list?
- Remove hidden formatting when user paste text from MS Word into TinyMCE
- strip only specific tags (like ), but keep other tags (like )
- Change padding to text indent in “Increase indent” TinyMCE
- Is there a WordPress equivalent to MediaWiki templates
- Removing the title attribute from links in the post content
- Getting an alphabetic post list with two letters onclick on letter
- HTML code in Custom field
- Add link on the top menu of the post table?
- How to wrap every image in a post with a div?
- Change default screen option value for posts per page
- Hiding by default specific post status on backend list?
- Paragraphs removed when using get_post_custom()?
- get_post_custom stripping styling issue
- why does HTML Tag not working in Post and Page
- Remove whitespace at the end of posts?
- Remove double space after a period
- Populating a page with content from post custom fields
- Content editor creating blank paragraphs in spaces and creating   in the_excerpt
- Save list from a custom meta box?
- How to add a custom field after wp post
- Filter Posts by Excluding Categories
- Remove permalink from images when inserting into post
- Add scripts on custom post add/edit pages Not Working
- Add code just after Post content
- Articles are text-only in any “Category” instead of HTML
- Ajax Dynamic Archives not showing correct results
- Format the Layout of Images In The Edit Post Textarea?
- Show certain posts in a LIST format that members have been granted access to
- Ajaxify This Code
- Pausing and Resuming WP_Query results
- List all categories with featured image from post?
- Apostrophe in a possessive appears as an open-single-smart-quote instead of a closed one
- Is Hfeed class for all pages needed
- Dynamic dependent Dropdown lists for categories, sub-categories and posts
- Anyone know why wordpress converts some html entities to their numeric equivalents?
- Conditionals if tags exist?
- How do you change the comment count in the back end posts list, to reflect unapproved comments, rather than all comments?
- How to get post body look same as my visual editor?
- Best Way to Add UnEditable HTML to Posts
- Divs appearing everywhere in post content
- Can’t give tags rels
- show posts under subcategory only when in that subcategory
- Benefits to using semantic HTML in post content? [closed]
- Creating a WordPress Post via REST API – HTML or Markdown?
- HTML Form Submit to table in same page
- Can’t update WordPress Page if post_content is Empty
- List all posts, pages and custom post types in admin
- How to determine if a post was last edited in the Visual Editor
- Locally change the font family [closed]
- Keyboard shortcut for headings on safari
- Highlighting Current Category in the Archive and Feeds page
- Show 10 latest posts only from users with contributors role
- How to display list of results
- How can I globally italicize list of texts in the UI database or Posts? [closed]
- WordPress 5: prevent link from displaying page title instead of URL
- WordPress Recent Post with the badge “New” on the side of the title post
- Remove HTML tags from all posts
- Checking if a post contains an html tag
- How to generate an HTML link automatically from URL in a users’ post
- How to allow some visitors to edit inline specific post
- Show all posts from the tags without having to set all of them
- Adding div to WordPress page content
- Posts don’t appear on Template Page
- When I click edit on a post, all the content disappear. Does anyone know how to fix this?
- Create a Page Template Which Displays All Posts by Current User
- How to get all the terms of a post
- Last three posts not being put in order by date. How to fix this?
- List posts that are in the same category as the current post title
- Display all posts from selected month
- CSS – Change height of Storefront / WooCommerce product categories, but not products
- Wrap posts from a category in HTML
- How to display my categories in a list (to a post, not the sidebar)?
- How can I add a custom caclulation form in post?
- How to automatically convert a form with HTML link into post
- Dynamic archive of posts by date
- Posts Page in WordPress loading bare HTML of my homepage
- How can I enable checkboxes for custom post type posts on their post list – WordPress
- Added .lowercase-alpha-list now my list is adding an extra period
- Display:inline not working
- Get WordPress post content by post id
- Get page ID of page that is set as the posts page
- Get Posts Under Custom Taxonomy
- How to limit the number of posts that WP_Query gets?
- Stop WordPress Wrapping Images In A “P” Tag
- When is the ‘post_content_filtered’ column in database cleared by WordPress?
- Turn a URL into an Attachment / Post ID
- GET the excerpt by ID
- Stop WordPress automatically adding tags to post content
- Determine if page is the Posts Page
- How to get ‘post_content’ without stripping tags?
- How to add an admin notice upon post save/update
- Print Current Post Index number within Loop
- Should we trust the post globals?
- Optimize post insert and delete for bulk operations?
- Get the Current Page Number
- How do you add thumbnail support for custom post types?