Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理 wordpress 媒体库选项卡。在这个 iframe 中,我提供了一个带有 target="_blank" 的链接。我希望此链接指向一个新的浏览器选项卡或窗口,但它会在 iframe 选项卡内打开链接。这是链接:
$view = '<a href='.get_permalink($attach->ID).' target="_blank">'.$attach->post_title.'</a>';
我怎样才能让它进入一个新的浏览器窗口?
默认情况下,它应该在新选项卡/窗口中打开。
尝试更改为
$view = '<a href="'.get_permalink($attach->ID).'" target="_blank">'.$attach->post_title.'</a>';
在网址中添加引号
_top 将起作用。这会将最顶层的父级重定向到新的 url。
_top