Changes between Initial Version and Version 1 of Ticket #23412
- Timestamp:
- 02/07/2013 02:05:05 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23412
-
Property
Component
changed from
Accessibility
toGeneral
-
Property
Component
changed from
-
Ticket #23412 – Description
initial v1 10 10 11 11 Here is my script: 12 12 {{{ 13 13 function my_password_form() { 14 14 global $post; … … 23 23 } 24 24 add_filter( 'the_password_form', 'my_password_form' ); 25 25 }}} 26 26 27 27 28 28 This functions returns empty URL to wp-login.php script: 29 29 {{{ 30 30 function wp_get_referer() { 31 31 $ref = false; … … 39 39 return false; 40 40 } 41 41 }}} 42 42 I hope this helps. 43 43