Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a menu item I created called 'View Certificates' and a sub menu item called 'Add Certificates'. The Add Certificates page is just a file upload page. After the file uploads successfully, I want it to redirect back to the 'View Certificates' page.

All my code is in the functions.php file. How do I go about doing this redirect?

share|improve this question
:is this plugin – gowri Oct 15 '11 at 3:49

1 Answer

up vote 1 down vote accepted

wp_redirect is a function which helps you to redirect http://codex.wordpress.org/Function_Reference/wp_redirect

& you can run it in conditions with http://codex.wordpress.org/Conditional_Tags

share|improve this answer
hm, ive tried that and it doesn;t seem to be doing anything. Could you provide an example? – dtj Oct 15 '11 at 16:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.