Changes between Initial Version and Version 1 of Ticket #54723
- Timestamp:
- 01/03/2022 10:00:14 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #54723 – Description
initial v1 1 Undefined array key "host" in <b>wp-includes/theme.php</b> on line <b>3511</b> 1 `Undefined array key "host" in <b>wp-includes/theme.php</b> on line <b>3511</b>` 2 2 3 3 Because i want relative permalinks to my site i use a filter like this 4 4 5 {{{ 5 6 add_filter( 'home_url', function ($url){ 6 7 return set_url_scheme( $url, 'relative' ); 7 8 } ); 9 }}} 8 10 9 So, $home_origin['host']in file theme.php produces Undefined array11 So, `$home_origin['host']` in file theme.php produces Undefined array 10 12