Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Messaggio personalizzato nella pagina protetta da password
- add_filter( 'the_password_form', 'custom_password_form' );
- function custom_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '<form class="protected-post-form" action="' . get_option('siteurl') . '/wp-login.php?action=postpass" method="post">
- ' . __( "<h2>Inserisci la Password</h2>
- <p>Questa pagina è protetta da password, per riceverla devi :</p>" ) . '
- <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" /><input type="submit" class="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form>
- ';
- return $o;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment