Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #58161


Ignore:
Timestamp:
04/20/2023 02:24:16 AM (2 years ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #58161 – Description

    initial v1  
    1 /wp-admin/edit.php
     1`/wp-admin/edit.php`
    22
    3 uses functions in class-wp-list-table.php
     3uses functions in `class-wp-list-table.php`
    44
    55Which uses
    6 $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
     6`$current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );`
    77
    88While all other pages use
    9 WP_SITE_URL
     9`WP_SITE_URL`
    1010
    11 Thus, when in the post editor, the "Next page" goes to (in my case) https://127.0.0.1:8090/wp-admin/edit.php?paged=2, instead of to <my_url>/wp-admin/edit.php?paged=2 like the rest of wp_admin
     11Thus, when in the post editor, the "Next page" goes to (in my case) `https://127.0.0.1:8090/wp-admin/edit.php?paged=2`, instead of to `<my_url>/wp-admin/edit.php?paged=2` like the rest of `wp_admin`