Attached Images Metabox

Just wanted to give an update on this. The repository request has been approved but unfortunately I haven’t had the time to make a couple necessary changes tot he way that the data is saved as of yet. Hope to get it out soon.

-Travis

mmmp3

Shortcode integration for Flash MP3 Player from http://flash-mp3-player.net

Version Information:

Version: 1.0
Requires WordPress Version: 3.0
Compatible up to: 3.0.5
Last updated: October 28, 2010

Installation

Upload the mmmp3 plugin to your blog, Activate it, Use the shortcode in your posts.

Change Log

1.0

Download

Downloaded: 909 times

mmmp3 version 1.0
Archived and Development Versions

Please contact me with any support requests or bug reports. Thank you!

-Travis

Removing the WordPress 3.1 Admin Bar

In the upcoming version 3.1 of WordPress you will notice the BuddyPress style admin bar that appears when you’re logged in. Personally I kind of like it but there may be some folks out there who don’t care for it so much. So I’ll show you how to remove it with a simple line of code in your theme’s functions.php file. You ready to see how easy it is?

remove_action( 'init', 'wp_admin_bar_init' );

Yup, that’s it! Want to only show it on the front end?

if( is_admin() ){ remove_action( 'init', 'wp_admin_bar_init' ); }

Maybe it’ll come in handy, who knows.

-Travis