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, which opens to a new page ( target="_blank") nothing happens and the new tab/window is not opening.
target="_blank"
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/" target="_blank">wordpress.org</a>'; }
The text was updated successfully, but these errors were encountered:
Hi @kmgalanakis!
Thank you for the report. I will see if there are any potential workarounds.
Sorry, something went wrong.
No branches or pull requests
When clicking a link from inside a metabox, which opens to a new page (
target="_blank"
) nothing happens and the new tab/window is not opening.Test Code
The text was updated successfully, but these errors were encountered: