這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

wp-spoiler-alert

外掛說明

This plugin adds the shortcode [spoiler] to WordPress. Any content
wrapped inside this shortcode is blurred out. It can be revealed by
clicking on the blurred content.

The shortcode takes a mode parameter, which defaults to block. This
wraps your content inside a div. To add spoilers that are inside to your
text use the mode inline.

Eg:- Some [spoiler mode=’inline’]super secret stuff[/spoiler] here!

Credits

安裝方式

  1. Click Plugins > Add New in the WordPress admin panel.
  2. Search for “wp-spoiler-alert” and install.

Customization

The Partial and Max blur options control the amount of the blur effect
applied. A value of 0 applies no blur, 20 applies a very large blur
effect, etc.

The Custom option allows you to override the manner in which to hide the
spoilers. This is useful to tune the effect to your site’s theme.

The plugin checks for a custom.css in your current
theme’s directory at {current_theme}/wp-spoiler-alert/custom.css.

If this CSS file is present it will be added to the page automatically.

For eg:- the CSS below makes all spoilers into red blocks.

.spoiler-hidden {
  color: red;
  background: red;
}

.spoiler-hidden:hover {
  color: white;
  background: white;
  outline: 1px solid red;
}

.spoiler-hidden img {
  opacity: 0;
}

.spoiler-visible {
  color: inherit;
  background: inherit;
  outline: none;
}

常見問題集

  • Can I change the style of the spoiler?

Yes, see the customization section under Installation.

使用者評論

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

參與者及開發者

以下人員參與了開源軟體〈wp-spoiler-alert〉的開發相關工作。

參與者

將〈wp-spoiler-alert〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

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

變更記錄

0.8.3

  • Upgrades to Arrow 1.8.0.

0.8.2

  • Removes old twig templates.

0.8.1

  • Removes old files, fresh push with current Git release files.

0.8.0

  • Smaller release, without development files.
  • Bundles reactjs frontend.

0.6.0

  • Upgrades to Arrow 1.6.0.
  • Migrates front end to React.
  • Migrates front end build system to Webpack.

0.5.2

  • Fixes json_last_error for PHP 5.5.

0.5.1

  • Fixes build script.

0.5.0

  • Switched to Ember OptionsManager.
  • Updated to Arrow 0.8.1.

0.4.0

  • Upgrades to Arrow 0.7.0.

0.3.0

  • Updates Arrow to 0.5.1.

0.2.4

  • Fixes more typos.

0.2.3

  • Fixes typos.

0.2.2

  • Removes error_log

0.2.1

  • Removes debug messages from 0.2.0

0.2.0

  • Switches to Arrow 0.4.1.

0.1.2

  • First release on wordpress.org

0.1.0

  • Initial Release