Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #54723


Ignore:
Timestamp:
01/03/2022 10:00:14 PM (3 years ago)
Author:
sabernhardt
Comment:

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>`
    22
    33Because i want relative permalinks to my site i use a filter like this
    44
     5{{{
    56add_filter( 'home_url', function ($url){
    67return set_url_scheme( $url, 'relative' );
    78} );
     9}}}
    810
    9 So, $home_origin['host'] in file theme.php produces Undefined array
     11So, `$home_origin['host']` in file theme.php produces Undefined array
    1012