[WordPress] 外掛分享: Mail Subscribe List

WordPress 外掛 Mail Subscribe List 的封面圖片。

前言介紹

  • 這款 WordPress 外掛「Mail Subscribe List」是 2012-12-02 上架。
  • 目前有 5000 個安裝啟用數。
  • 上一次更新是 2023-08-08,距離現在已有 635 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
  • 外掛最低要求 WordPress 3.0 以上版本才可以安裝。
  • 有 60 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

webfwd |

外掛標籤

list | mail | email | subscribe | newsletter |

內容簡介

查看最新的 WordPress 優惠以用於您的網站。

這是一個簡單的外掛,允許訪客在您的網站上輸入他們的姓名和電子郵件地址,然後訪客詳細信息將添加到訂閱者列表,可在 WordPress 管理區域中查看和修改。

這個外掛不僅可以用於郵件列表訂閱,也可用於收集訪問您網站的電子郵件地址和/或人名。

這個名字/電子郵件表單不僅可以進行自定義,還可以通過使用“訂閱小部件”(Subscribe Widget)、WordPress 短碼 [smlsubform] 或從 WordPress 主題調用 php 函數來顯示在任何 WordPress 頁面上。

我開發這個外掛是因為我找不到任何簡單地允許用戶提交他們的姓名和電子郵件地址到簡單列表中(可在 WordPress 管理中心查看),我找到的所有外掛都有很多額外功能,如第三方集成、大量郵件和雙重確認,我的客戶都不需要這些功能。

額外選項

我開發了一些可自定義的選項,可讓您更改外掛的顯示方式。

以下是每個選項的說明:

“prepend” -> 在表單頂部內部添加一個文字段落。
“showname” -> 如果為 true,則會顯示用於捕獲用戶名稱的名稱標籤和輸入欄位。
“nametxt” -> 在名稱輸入欄位左側顯示的文本。
“nameholder” -> 作為占位符在名稱輸入框中顯示的文本。
“emailtxt” -> 在電子郵件輸入欄位左側顯示的文本。
“emailholder” -> 作為占位符在電子郵件輸入框中顯示的文本。
“showsubmit” -> 如果為 true,則會顯示提交按鈕,需要提交表單。
“submittxt” -> 顯示在表單提交按鈕上的文本/值。
“jsthanks” -> 如果為 true,則會顯示 JavaScript 提示訊息,而不是表單上方的段落。
“thankyou” -> 當有人訂閱時顯示的感謝消息。(如果為空,將不顯示)

額外選項 - 如何使用 (短碼方法)

只需將短碼代碼放入您的 WordPress 頁面中即可使用,以下是短碼範例。

[smlsubform prepend="" showname=true nametxt="Name:" nameholder="Name..." emailtxt="Email:" emailholder="Email Address..." showsubmit=true submittxt="Submit" jsthanks=false thankyou="Thank you for subscribing to our mailing list"]

額外選項 - 如何使用 (PHP 方法)

將以下 PHP 代碼置於 WordPress 主題中即可使用 PHP 方法,以下是您模板的 php 代碼範例。

$args = array(
'prepend' => '',
'showname' => true,
'nametxt' => 'Name:',
'nameholder' => 'Name...',
'emailtxt' => 'Email:',
'emailholder' => 'Email Address...',
'showsubmit' => true,
'submittxt' => 'Submit',
'jsthanks' => false,
'thankyou' => 'Thank you for subscribing to our mailing list'
);
echo smlsubform($args);

原文外掛簡介

Check out the latest WordPress deals for your site.
This is a simple plugin that allows visitors to enter their name and email address on your website, the visitors details are then added to the subscribers list which is available to view and modify in the WordPress admin area.
This plugin can be used not only for Mailing List subscriptions but can be used generally for collecting email address and/or peoples names that are visiting your website.
The name/email form can not only be customised but can also be displayed on any WordPress page by using either the ‘Subscribe Widget’, WordPress shortcode [smlsubform] or from your WordPress theme by calling the php function.
I developed this plugin as I could not find any plugin that simply allows users to submit their name and email address to a simple list viewable in the WordPress admin, all the plugins that I found had lots of extra features such as 3rd party integration, mass emailing and double opt-in, my clients do not need any of these features.
Extra Options
I have developed some customizable options that allow you to change the way the plugin is displayed.
Below is an explanation of what each option does:-

“prepend” -> Adds a paragraph of text just inside the top of the form.
“showname” -> If true, this with show the name label and input field for capturing the users name.
“nametxt” -> Text that is displayed to the left of the name input field.
“nameholder” -> Text that is displayed inside the name input box as a place holder.
“emailtxt” -> Text that is displayed to the left of the email input field.
“emailholder” -> Text that is displayed inside the email input box as a place holder.
“showsubmit” -> If true, this with show the submit button, return required to submit form.
“submittxt” -> Text/value that will be displayed on the form submit button.
“jsthanks” -> If true, this will display a JavaScript Alert Thank You message instead of a paragraph above the form.
“thankyou” -> Thank you message that will be displayed when someone subscribes. (Will not show if blank)

Extra Options – How to Use (Short Code Method)
Short codes can be used simply putting the code into your wordpress page, here is an example of the shortcode in use.
[smlsubform prepend="" showname=true nametxt="Name:" nameholder="Name..." emailtxt="Email:" emailholder="Email Address..." showsubmit=true submittxt="Submit" jsthanks=false thankyou="Thank you for subscribing to our mailing list"]

Extra Options – How to Use (PHP Method)
The PHP method can be used by putting the following PHP code into your WordPress theme, here is an example of php code for your template.
$args = array(
'prepend' => '',
'showname' => true,
'nametxt' => 'Name:',
'nameholder' => 'Name...',
'emailtxt' => 'Email:',
'emailholder' => 'Email Address...',
'showsubmit' => true,
'submittxt' => 'Submit',
'jsthanks' => false,
'thankyou' => 'Thank you for subscribing to our mailing list'
);
echo smlsubform($args);

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Mail Subscribe List」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


1.0 | 1.1 | 2.0 | 2.1 | 1.0.1 | 1.1.1 | 1.1.2 | 2.0.1 | 2.0.2 | 2.0.3 | 2.0.4 | 2.0.5 | 2.0.6 | 2.0.7 | 2.0.8 | 2.0.9 | 2.1.1 | 2.1.2 | 2.1.3 | 2.1.4 | 2.1.5 | 2.1.6 | 2.1.7 | 2.1.8 | 2.1.9 | trunk | 2.1.10 |

延伸相關外掛(你可能也想知道)

文章
Filter
Apply Filters
Mastodon