WPBP / WordPress-Plugin-Boilerplate-Powered

Wordpress Plugin Boilerplate but Powered with examples and a generator!
https://wpbp.github.io/
GNU General Public License v3.0
793 stars 114 forks source link

Fix #189: Add Tagged #194

Closed martijnengler closed 3 years ago

martijnengler commented 3 years ago

This PR fixes #189

Requires decodelabs/tagged and uses it instead of hardcoded HTML.

Last commit in this PR fixes what I assume is a small issue with the output. Old output was:

 <span class="foo">foo = test</span><span class="bar">foo = lol</span>

New output is:

 <span class="foo">foo = test</span><span class="bar">bar = lol</span>

(Note the bar = lol vs. foo = lol)

Didn't feel like this needed a separate PR, but happy to drop the commit or split it.

Mte90 commented 3 years ago

Thanks!