I want to pass some value through url in wordpress, but I met some trouble that wordpress will exchange &
to #038;
automatically, how to make a &
still as a &
?
I noticed in wp-includes/formatting.php
, there has many rules to exchange symbols, I tried modify some code, but failed.
some link like
site.com?this=that&that=this
will output to the web browser address like site.com?this=that#038that=this
and the page can not get the value in the part that=this
how to setting correctly? thanks.
I also had this problem, after some research I found this plugin which fixes it. After installing the plugin you just add these tags around the piece of code you don't want wordpress to format. Like so:
Hope that helps!
One More Solution:
wp-includes\formatting.php
: inesc_url ()
comment the lineIt works for me.
You can disable wptexturize() by adding this in a functions.php file inside your template folder (or add it to the existing one):
But note that this will of course disable all the "cleaning", not just the '&' conversion.
If you prefer to just get rid of the ampersand conversion you can comment line 962 in formatting.php. I post lines 961 and 962 bellow (this is from an unaltered WP 3.1):