Sunday 12 May 2019

wordpress - 'wp_redirect' is not working

There is an HTML form input. Here's the code:




    wp_redirect("/"); 
}


...





But redirect doesn't work. Install debug plugin redirects to wp, that's what it showed.



http://i.stack.imgur.com/Im4eE.png



PS:






It does not work either.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...