I have a Wordrpess site. I want add numbers to “h2 tags”
I want to do it via php(functions.php)
The format of my posts:
text
<h2>text</h2>
text
<h2>text</h2>
text
<h2>text</h2>
...
...
I want this:
text
<h2>NUMBER-1 text</h2>
text
<h2>NUMBER-2 text</h2>
text
<h2>NUMBER-3 text</h2>
...
...
You can use ordered list with style attribute:
Simplified with css:
ol {font-weight: bold;font-size:20px;}
span {font-weight: normal;font-size:10px;}