Can a class be added to the form that is displayed when a post is password protected, please? As it currently stands, it's impossible to selectively style any of the elements in the form.
Can a class be added to the form that is displayed when a post is password protected, please? As it currently stands, it's impossible to selectively style any of the elements in the form.
I think this will work, not adding a class to the form itself, just wrapping it in a quick div for styling.
add_filter('the_password_form','my_password_form');
function my_password_form($text){
$text='<div class="myform">'.$text.'</div>';
return $text;
}
untested.
Yes - that does help. But, ideally, the class should be on the form itself. All of the other front-end forms have either an id or a class - why not this one? Seems to be a much neglected corner of WP...
raise a trac ticket?
This topic has been closed to new replies.