We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When clicking a link from inside a metabox, the link page opens inside the metabox container.
Test Code
add_action( 'admin_head', 'my_meta_box' ); function my_meta_box() { global $post; add_meta_box( 'my_meta_box', __( 'My metabox', 'my-context' ), 'my_meta_box_callback', $post->post_type, 'side' ); } function my_meta_box_callback() { echo '<p>Lorem ipsum dolor sit amet.</p>'; echo '<a href="https://wordpress.org/">wordpress.org</a>'; }
The text was updated successfully, but these errors were encountered:
Related: calls to open the media modal via wp.media results in the modal being loaded inside of the iframe.
Sorry, something went wrong.
Hi kmgalanakis,
Thank you for the report again. I believe there are ways to get around this. We can try them out, and see if that improves the situation.
Successfully merging a pull request may close this issue.
When clicking a link from inside a metabox, the link page opens inside the metabox container.
Test Code
The text was updated successfully, but these errors were encountered: