Es funktionierte einfach nicht. Immer wieder diese „Warning: Cannot modify header information – headers already sent by …“ . Dann ging es doch….
English Summary: I wanted to redirect from on wordpress admin page to another one, but all the classical php and wordpress functions failed. Then JavaScript came in.
Ausprobiert hatte ich
- header(‚Location: <?php echo admin_url(‚edit.php?post_type=page&page=…..
- header(‚Location: …. URL mit „&noheader=true“ am Ende
- wp_redirect (admin_url(‚ ….
- wp_redirect( URL mit „&noheader=true“ am Ende
Die Meldung ging aber nicht weg.
Die Lösung, ein kleines Javascript, fand ich hier
<script type="text/javascript"> window.location = '<?php echo admin_url('edit.php?post_type=page&page=... ?>'; </script><?php