Do you know why WordPress delete variables when I'm on a page of "custom post types" (singular) and not when I'm on a standard page?
Here is how I create my URL in a loop.
<a href="<?php echo esc_url( add_query_arg( 'p', $url, the_permalink() ) ); ?>">See more</a>
The link is generated correctly, but when I click "?p=value" is deleted...
Thanks in advance! :)