WordPress电子邮件共享按钮无法在Outlook中打开
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress电子邮件共享按钮无法在Outlook中打开相关的知识,希望对你有一定的参考价值。
我的single.php文件中有一个自定义共享按钮片段。它适用于其他电子邮件应用程序,而不是Microsoft Outlook。有任何想法吗?
<a class="btn btn-mail" href="mailto:?subject=<?php print(urlencode(the_title())); ?>&body=Check out this article: <?php print(urlencode(get_permalink())); ?>"> BUTTON HERE </a>
答案
我已经看到了,你错过了添加接收者的电子邮件地址。代码应该是
<a class="btn btn-mail" href="mailto:someone@example.com?subject=<?php print(urlencode(the_title())); ?>&body=Check out this article: <?php print(urlencode(get_permalink())); ?>"> BUTTON HERE </a>
试试这个然后让我知道结果。
以上是关于WordPress电子邮件共享按钮无法在Outlook中打开的主要内容,如果未能解决你的问题,请参考以下文章
无法将网络共享路径保存为 wordpress 3.1 中的链接
如何允许 Laravel 和 WordPress 共享登录名?