我的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>
答案 0 :(得分:0)
我已经看到,您错过了添加收件人电子邮件地址的操作。 代码应该是
<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>
尝试一下,然后让我知道结果。