This is my edit link in template file
$edit_link=add_query_arg( 'ser_edit', $post_id, $edit_link ) ;
This is my html code.
<a href="<?php print $edit_link;?>"><?php _e('Edit','wpestate');?></a>
When I change first parameter in add_query_arg, It works fine but ser_edit is the correct parameter for that. But it display blank page when I click on edit link in html. I checked console, no error. Anybody has any idea??
It display correct url in browser but display total blank page. When I change key parameter, it works fine. So how to solve this??