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.
在多个网站上工作时,我发现您可以打开或关闭社交媒体图标,但它们都默认在同一个窗口中打开。有谁知道如何让它们在另一个选项卡或窗口中打开?如果是这样,我如何/在哪里进行这些更改。
在一个实例中,我使用 ShareThis 插件,在另一个实例中,我使用 Colorway WordPress 主题。我用谷歌搜索和谷歌搜索,似乎无法得到答案。
谢谢!贾克斯
在小部件屏幕或插件设置中将有一个“在新窗口中打开链接”选项(通常是一个复选框)。
如果没有 - 不幸的是,必须使用 jQuery 之类的东西$('a.social').attr('target', '_blank');或在 php 中(插件 > 编辑器,或外观 > 编辑器) - 你必须找到类似<a href="<?php get_option('facebook', 'share-this'); ?>"></a>和 at的代码target="_blank"。
$('a.social').attr('target', '_blank');
<a href="<?php get_option('facebook', 'share-this'); ?>"></a>
target="_blank"