Closed nielslange closed 1 year ago
Fixes #90
In https://wordpress.org/support/topic/template-override-not-working-8/, a user asked how to overwrite the template respectively how to change <input type="button"> to <button>. This PR aims to a toggle to use <button> instead of <input type="button">.
<input type="button">
<button>
add_filter( 'use_html_buttons', '__return_true' );
Fixes #90
In https://wordpress.org/support/topic/template-override-not-working-8/, a user asked how to overwrite the template respectively how to change
<input type="button">
to<button>
. This PR aims to a toggle to use<button>
instead of<input type="button">
.Testing instructions:
add_filter( 'use_html_buttons', '__return_true' );
.