Redirect to Another Page in WordPress Backedn is possible in WordPress, it’s because WordPress built in in many many featured, a lot of simple code, a lot of API and many more, on this tips, I will show you how to redirects to another page in WordPress backend. This code use wordpress function wp_redirect()
Try to explore this example from wp engineer and you can explore more to get what you really want
function do_redirect_1() {
global $pagenow;
if ( 'plugins.php' === $pagenow ) {
if ( function_exists('admin_url') ) {
wp_redirect( admin_url('edit-comments.php') );
} else {
wp_redirect( get_option('siteurl') . '/wp-admin/' . 'edit-comments.php' );
}
}
}
if ( is_admin() )
add_action( 'admin_menu', 'do_redirect_1' );
Need more example go to WP Engineer tutorial and I hope this example make you clearly about redirect to another page in WordPress Don’t worry if you still confused about tutorial, please let’s me know and we can discuss it.



I can’t see your post..all error
Warning: preg_match() [function.preg-match]: Compilation failed: missing ) at offset 13 in /home/wptricks/public_html/_w/wp-content/plugins/search-unleashed/models/highlighter.php on line 48
Please Check it again
I made this plugin that allows WordPress users to be able to redirect a category (not a page) to any URL on the net.
http://wpjudge.com/the-much-needed-category-redirect-plugin-is-here/
Think it is a great supplement to your function and other plugins like page-links-to. Been to lazy to put it in the repository.