Linux 软件免费装

Plugin Name

开发者 danielbitzer
更新时间 2014年8月9日 09:08
PHP版本: 3.0 及以上
WordPress版本: 3.9
版权: GPLv2 or later
版权网址: 版权信息

标签

alerts notices

下载

1.0.0

详情介绍:

This is a very simple WordPress plugin for creating frontend notices server side or client side. There are 4 notice types by default success, error, warning, general or you can create custom notice types. Server side notices are stored in the session until displayed. This plugin hopes to one day solve the problem of complex WordPress sites with multiple plugins all having their own Notices that all require styling. But for now, the Notices API is useful tool for developers creating custom functionality in their theme. Server Side Usage ` **Client Side Usage** jQuery(document).ready(function($){ $.WP_Notices.success( title,message, scroll_to, timer, callback ); $.WP_Notices.error( title, message, scroll_to, timer, callback ); $.WP_Notices.general( title, message, scroll_to, timer, callback ); $.WP_Notices.warning( title, message, scroll_to, timer, callback ); // Custom type $.WP_Notices.render_notice( type, title, message, scroll_to, timer, callback ); // Using the callback parameter $.WP_Notices.warning( 'Form Error', 'Invalid form input.', false, 3000, function( $notice ) { console.log( $notice ); }); }); ` Options ` add_filter( 'notice_api_options', 'customize_notice_options' ); function customize_notice_options( $options ) { $options = array( 'prepend_selector' => '#content', 'container_class' => 'notices-container', 'before_title' => '', 'after_title' => ': ', 'scrolling_speed' => 500, ); return $options; } `

安装:

This section describes how to install the plugin and get it working. e.g.
  1. Upload the plugin directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Create some notices in your code!

更新日志:

1.0