NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
| color molokai2 | |
| set guioptions=aAce | |
| set columns=120 | |
| set guifont=Inconsolata:h12 | |
| set wrap | |
| " screw those standards, i like my tabs being just that. tabs. | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set softtabstop=4 |
| <?php | |
| /* | |
| Plugin Name: Videos | |
| Plugin URI: | |
| Author: Dave Rupert | |
| Author URI: http://www.daverupert.com | |
| Description: A custom post type that adds videos and custom taxonomies. | |
| Version: 1.0 | |
| */ |
| <?php | |
| // Change /*CUSTOMIZE_THIS*/ to a unique name (two places). Go ahead, make it long. | |
| // Like, your initials, and your full plugin name. | |
| // e.g. MTJ_Some_Awesome_Plugin_Controller | |
| /*CUSTOMIZE_THIS*/_Controller::init(); | |
| class /*CUSTOMIZE_THIS*/_Controller { | |
| function init() { |
| <?php | |
| /** | |
| * post-process.php | |
| * make sure to include post-process.php in your functions.php. Use this in functions.php: | |
| * | |
| * get_template_part('post-process'); | |
| * | |
| */ | |
| function do_insert() { | |
| if( 'POST' == $_SERVER['REQUEST_METHOD'] |
| <?php | |
| /* | |
| * Plugin Name: WordPress.com Watermark Image Uploads | |
| * Author: Alex Mills | |
| * Author URI: http://automattic.com/ | |
| */ | |
| class WPcom_Watermark_Uploads { | |
| public $watermark; |
| <?php | |
| # License: Public Domain | |
| # I recommend replacing 'my_' with your own prefix. | |
| function my_template_path() { | |
| return My_Wrapping::$main_template; | |
| } |
| TF To Do list - Pre Launch | |
| Goals: | |
| --------------------------------------------- | |
| - Clear message across entire service | |
| - Dummyproof Onboarding Process | |
| - Easy to use & well documented Features | |
| To do's (prioritized): |
NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
#Four Ways To Do Pub/Sub With jQuery and jQuery UI (in the future)
Between jQuery 1.7 and some of work going into future versions of jQuery UI, there are a ton of hot new ways for you to get your publish/subscribe on. Here are just four of them, three of which are new.
(PS: If you're unfamiliar with pub/sub, read the guide to it that Julian Aubourg and I wrote here http://msdn.microsoft.com/en-us/scriptjunkie/hh201955.aspx)
##Option 1: Using jQuery 1.7's $.Callbacks() feature:
| <?php | |
| /* | |
| Plugin Name: WordCamp Philly 2011 Admin | |
| Plugin URI: http://localhost/whitelabel | |
| Description: Some swanky stuff to make your admin look GOOD | |
| Author: Andrew Norcross | |
| Version: 0.1 | |
| Requires at least: 3.0 | |
| Author URI: http://andrewnorcross.com |