multiscroll plugin by Alvaro Trigo. Create divided multi-scrolling pages with two splited vertical layouts or panels.
Tag: plugins
Resource – SweetAlert JavaScript Plugin
A nice alternative to using the ol’ and ugly default Javascript alert box. Allows multiple options and callbacks while staying small and simple.
Resource – Intro to Grunt by Chris Coyier on 24 Ways
Link:
http://24ways.org/2013/grunt-is-not-weird-and-hard/
Description:
Fantastic resource on getting started with Grunt.js. Practical implementations of script concats, minimizing, and automation. Recommend as a simple resource and starting template for many common web site tasks.
Notes:
- The concat plugin will combine files in the order given, or in the order the search parameters reveal. Make sure you’re loading scripts dependencies first.
- http://gruntjs.com/
- https://github.com/gruntjs/grunt-contrib-concat
- https://github.com/gruntjs/grunt-contrib-uglify
Adding Custom Header Images to WordPress.org Plugins
While reading WPCandy’s “Recap: Matt Mullenweg’s 2012 State of the Word“, I came across a note about custom plugin header images.
This may not be news to some plugin devs, but you are now able to use your own custom header image for your WordPress plugins hosted on WordPress.org.
If you don’t spend much time browsing the actual plugins directory, you may not have noticed this. A great example of a custom plugin image in use is the infamous “Hello Dolly” plugin hosted on WordPress.org.

The image needs to be a 772×250 pixel jpeg or png. This goes into your plugin’s SVN directory with the path assets/banner-772x250.(jpg|png)
. Resources to get started with custom header images for your WordPress plugin:
- The official announcement and details from Matt Mullenweg himself. If you’ve got experience with SVN and the WP repo, this should be all you need.
- A more step-by-step, detailed guide to creating your own custom header images for plugins.
Be warned, Matt has stated that this will most likely change in the future. If anyone has any more up to date details or resources, please let me know in the comments.