实现了“Email This”按钮?

时间:2011-02-02 作者:hawbsl

我们继承了一位拥有漂亮Wordpress网站的客户,但之前的代理没有完全实现“通过电子邮件发送此”功能。我的意思是,他们的主题在每一页上都有一个“给这个发电子邮件”的链接,但下面什么都没有。

我们已经接到指示,要让它发挥作用。

因此,理想的解决方案是保留现有按钮(其样式非常好),但只提供下面的管道工程。

在快速搜索将实现此功能的插件后,我发现:

不清楚这些邮件是否会在文章中添加“自己的”按钮(可能看起来不像现有的主题按钮),我们可以将其插入现有按钮吗?此外,在每种情况下,我们是否可以调整它抛出的迷你形式,使其与我们的主题相匹配?

最后,如果有一个插件比这两个插件都好,请提供建议。

Update:

随附WP-Email 最终,它功能齐全,易于配置,并且mireille raad 说,很容易调整CSS和图像,使按钮100%适合我们的网站。随附的表格立即采用了我们主题中使用的配色方案和字体,而无需我们做任何事情。

2 个回复
最合适的回答,由SO网友:mireille raad 整理而成

那么,让任何插件工作起来不是更容易吗?然后进入插件文件夹/代码,搜索它使用的图像,并将其替换为漂亮的图像/主题图像?

SO网友:Ayaz Malik

此代码旨在允许读者单击按钮,打开默认的电子邮件软件,并创建指向读者当前访问的帖子的主题和链接。

<script type="text/javascript">
<!-- Begin
function isPPC() {
if (navigator.appVersion.indexOf("PPC") != -1) return true;
else return false;
}
if(isPPC()) {
document.write(\'<a class="contact" HREF=\\"mailto:\\?subject\\=Take a look at this page I found, \' + document.title + \'?body=You can see this page at: \' + window.location + \'\\" onMouseOver="window.status=\\\'Send your friends e-mail about this page\\\'; return true" TITLE="Send your friends e-mail about this page">Email to a Friend<\\/a>\');
}
else { document.write(\'<a class="contact" HREF=\\"mailto:\\?body\\=Take a look at this page I found titled \' + document.title + \'. You can see this page at: \' + window.location + \'\\" onMouseOver="window.status=\\\'Send your friends e-mail about this page\\\'; return true" TITLE="Send your friends e-mail about this page" rel="nofollow">Email This!<\\/a>\');
}
// End -->
</script>
在此处找到:http://wphacks.com/how-to-add-email-this-button-wordpress-blog/

结束

相关推荐

How do you debug plugins?

我对插件创作还很陌生,调试也很困难。我用了很多echo,它又脏又丑。我确信有更好的方法可以做到这一点,也许是一个带有调试器的IDE,我可以在其中运行整个站点,包括插件?