You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is kind of similar to issue #28 in that it will only affect sites where WordPress is installed in a subdirectory (e.g., https://example.com/example/).
In inc/media-sizes-verify.php a URL is hard-coded: <a href="/wp-admin/options-media.php">Review Settings</a>. This link will be broken if WordPress is located in a subdirectory.
It should be <a href="<?php echo esc_url( admin_url( 'options-media.php' ) ); ?>">Review Settings</a>.
The text was updated successfully, but these errors were encountered:
This issue is kind of similar to issue #28 in that it will only affect sites where WordPress is installed in a subdirectory (e.g.,
https://example.com/example/
).In inc/media-sizes-verify.php a URL is hard-coded:
<a href="/wp-admin/options-media.php">Review Settings</a>
. This link will be broken if WordPress is located in a subdirectory.It should be
<a href="<?php echo esc_url( admin_url( 'options-media.php' ) ); ?>">Review Settings</a>
.The text was updated successfully, but these errors were encountered: