in die functions.php
[php]
/* —————————————————————————
* CHANGE PASSWORD PROTECTED PAGE TEXT AND STYLE
* ————————————————————————— */
add_filter( ‚the_password_form‘, ‚custom_password_form‘ );
function custom_password_form() {
global $post;
$label = ‚pwbox-‚.( empty( $post->ID ) ? rand() : $post->ID );
$o = “;
if ($post->ID == 404) {
$o = ‚
Special Heading
‚;
}
$o .= ‚
Bei Fragen, wenden Sie sich bitte an uns (xxx oder xxx).
‚;
return $o;
}
[/php]