Changes between Initial Version and Version 1 of Ticket #58161
- Timestamp:
- 04/20/2023 02:24:16 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58161 – Description
initial v1 1 /wp-admin/edit.php 1 `/wp-admin/edit.php` 2 2 3 uses functions in class-wp-list-table.php3 uses functions in `class-wp-list-table.php` 4 4 5 5 Which 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'] );` 7 7 8 8 While all other pages use 9 WP_SITE_URL 9 `WP_SITE_URL` 10 10 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_admin11 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`