NWS Sendy

外掛說明

NWS Sendy is a WordPress plugin that integrates with Sendy, allowing users to easily manage their email subscriptions through a simple interface. This plugin provides an admin settings page for configuring the Sendy API key and List ID, as well as a shortcode and block to display a subscription form on the front end.

Features

  • Admin interface under the Tools menu for setting the API key and List ID.
  • Shortcode to display a subscription form widget.
  • Block for the WordPress block editor that replicates the functionality of the shortcode.
  • Fallback template for the subscription form if the theme template is not found.

Success and error message customization

There are two filters availabe for overriding success and error message after subscribe attempt.
You can simpy override them by implementing filters:
* nws_sendy_form_success_message
* nws_sendy_form_error_message

Usage

  • Use the shortcode [nws_sendy_form] to display the subscription form in posts or pages.
  • Add the Sendy form block in the block editor to include the subscription form in your content.

螢幕擷圖

  • Example of usage inside block editor.
  • Plugin settings.

適用於區塊編輯器

這個外掛提供 1 個可供 Gutenberg/區塊編輯器使用的區塊。

  • Sendy Form A block to display a subscription form integrated with Sendy.

安裝方式

  1. Upload the nws-sendy folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Navigate to Tools > NWS Sendy to configure your API key and List ID.

常見問題集

How do I customize success and error messages?

You can customize the success and error messages by using the following filters in your theme’s functions.php:
`php
add_filter(‘nws_sendy_form_success_message’, function($message) {
return “Thank you for subscribing!”;
});

add_filter(‘nws_sendy_form_error_message’, function($message) {
return “There was an error with your submission. Please try again.”;
});
`

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈NWS Sendy〉的開發相關工作。

參與者

將〈NWS Sendy〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0.1

  • Fixed direct access security issue.

1.0.0

  • Release