內容簡介
輕鬆地向您的網站添加電子報訂閱表單,並開始收集電子郵件地址以與 MailChimp、Constant Contact 或其他第三方大量郵件發送程式一起使用!配備電子郵件管理管理面板。網站開發價格實惠 @ Your Local Webmaster.com
使用說明
簡碼
您可以在頁面、文章和 HTML widget 中使用這些簡碼!
[simple_newsletter]
這將顯示一個基本的電子郵件訂閱表單。
可用選項
[simple_newsletter name=”true”]
如果您想要同時捕獲訂閱者的姓名和電子郵件地址,請設置為 true,以創建一個“姓名”字段。
[simple_newsletter title=”My Form Title”]
為您的表單添加標題。預設不顯示標題。
[simple_newsletter button=”Go!”]
更改按鈕上的文字。預設顯示“訂閱”。
[simple_newsletter terms=”http://www.someURL.com/terms.html”]
您是否希望訂閱者先同意條款和條件?然後輸入URL。
[simple_newsletter terms_text=”I agree to terms & conditions”]
輸入條款和條件鏈接文字。
[simple_newsletter thanks=”Thank you for subscribing!”]
這是成功提交後顯示的感謝文字。
使用示例:
[simple_newsletter name=”true” terms_text=”I agree to the terms and conditions” terms=”http://www.google.com” button=”GoYo!” thanks=”Thank you very much for joining our mailing list!”]
嵌入主題中
將此粘貼到您的主題中,以顯示表單的位置。
<?php
$snsf_args = array(
"name"=>1,
"title"=>"My New Title",
"button"=>"My New Button",
"terms" => "http://www.google.com",
"terms_text" => "this is my terms text",
"thanks" => "Thank you sooo much!"
);
echo do_newsletter($snsf_args);
?>
外掛標籤
開發者團隊
原文外掛簡介
Easily add a newsletter subscription form to your site and start collecting email addresses to use with MailChimp, Constant contact or other third-party bulk-mailer program! Complete with email management admin panel. Web development is affordable @ Your Local Webmaster.com
Usage Notes
Shortcodes
You may use these shortcodes in your pages, posts and HTML widgets!
[simple_newsletter]
This will display a basic email subscribe form.
Available Options
[simple_newsletter name=”true”]
Set to true to create a “Name” field if you wish to capture the subscribers name as well as email address.
[simple_newsletter title=”My Form Title”]
Gives your form a title. Default displays no title.
[simple_newsletter button=”Go!”]
Changes the text on the button. Default displays “Subscribe”
[simple_newsletter terms=”http://www.someURL.com/terms.html”]
Do you want the subscriber to agree to terms and conditions first? Then enter the URL.
[simple_newsletter terms_text=”I agree to terms & conditions”]
Enter the link text for the terms and conditions link.
[simple_newsletter thanks=”Thank you for subscribing!”]
This is the thank you text that displays after successful submit.
Example of use:
[simple_newsletter name=”true” terms_text=”I agree to the terms and conditions” terms=”http://www.google.com” button=”GoYo!” thanks=”Thank you very much for joining our mailing list!”]
Hardcoded into a Theme
Paste this into your theme where you want the form displayed.
1,
"title"=>"My New Title",
"button"=>"My New Button",
"terms" => "http://www.google.com",
"terms_text" => "this is my terms text",
"thanks" => "Thank you sooo much!"
);
echo do_newsletter($snsf_args);
?>
