Edit url incorrect for WP subfolder installations
-
First of all, thanks for a great plugin! This is not really a support request, just a pointer, I suppose – I was looking for a Github repo to open an issue there, but couldn’t find it. So here it is:
I was wondering: in line 77 of the plugin file you’re using get_home_url to build up the edit url:
$cupp_upload_edit_url = get_home_url().get_the_author_meta( 'cupp_upload_edit_meta', $user->ID );
My suggestion would be to use get_site_url() here. For me, the plugin causes a 404 when clicking on the (nicely implemented!) edit link – as I’m used to putting WordPress in its own folder. The issue is solved after changing this into
$cupp_upload_edit_url = get_site_url().get_the_author_meta( 'cupp_upload_edit_meta', $user->ID );
Maybe it’s my setup, surely there are .htaccess files that would fix this. But get_site_url() seems the safer choice here, no?
- The topic ‘Edit url incorrect for WP subfolder installations’ is closed to new replies.