Thursday, February 26, 2009

Plugin - Dashboard Media Navigator

Move from image to image in the edit screen of the Media Library dashboard.

Edit one image, click next/prev to save the image and move to the next target.

Odiogo Text to speech plugin

Create text-to-speech (TTS) podcast from RSS feed for iPod, iPhone, MP3 player and mobile phone

Windows PowerShell Holiday Gift Guide: Cmdlets and Add-ons

Windows PowerShell Holiday Gift Guide: Cmdlets and Add-ons

Plugin

Widget to bring quickpress to the front page if the user is logged in.

Some links and data for front page login and quickpost

Front Page Login Techniques
http://wordpress.org/extend/plugins/sidebar-login/

http://www.devlounge.net/code/wordpress-theme-log-in-on-the-front-page


Quickpress Locations

./wp-admin/css/dashboard-rtl.css:59
./wp-admin/css/dashboard.css:265D/* QuickPress */
./wp-admin/includes/dashboard.php:51
./wp-admin/includes/dashboard.php:53
./wp-admin/includes/dashboard.php:313
./wp-admin/includes/dashboard.php:316
./wp-admin/includes/dashboard.php:368
./wp-admin/includes/dashboard.php:369
./wp-admin/js/dashboard.js:25
./wp-admin/js/dashboard.js:26
./wp-admin/js/dashboard.js:32
./wp-admin/js/dashboard.js:42
./wp-admin/js/dashboard.js:47
./wp-admin/js/dashboard.js:50
./wp-admin/post.php:76
./wp-admin/post.php:93
./wp-admin/post.php:94
./wp-admin/post.php:97
./wp-admin/post.php:100
./wp-admin/post.php:105
./wp-admin/post.php:106
./wp-admin/post.php:112
./wp-admin/post.php:114

Monday, February 23, 2009

Multi-level Navigation CSS Generator

Multi-level Navigation CSS Generator

Friday, February 20, 2009

Where Do Kids Eat Free Today?

Where Do Kids Eat Free Today?

Nice resource!

The Unofficial Web Applications List

The Unofficial Web Applications List

'nuff said.

Cownt Us - Apps

Cownt Us - Apps

Candidate for a plug in.

pixelspread: CSS Drop Down Menu

pixelspread: CSS Drop Down Menu

Thursday, February 19, 2009

New Balance of Blue « WordPress Themes

WordPress › New Balance of Blue « WordPress Themes

CSS Horizontal Drop-Down Menu

CSS Horizontal Drop-Down Menu

Wordpress Plugin Generator

Wordpress Plugin Generator | web.forret.com

Makes a plugin template in a few clicks.

Wednesday, February 18, 2009

Plugin API « WordPress Codex

Plugin API « WordPress Codex:

"Hooks, Actions, and Filters"...oh my!

Writing a Plugin « WordPress Codex

Writing a Plugin « WordPress Codex

RTFM :)

Tuesday, February 17, 2009

Plugin API/Action Reference « WordPress Codex

Plugin API/Action Reference « WordPress Codex:

These actions are run when a logged-in user opens the home page in Version 2.7 under the default theme.

Hook Reference/wp head « WordPress Codex

Hook Reference/wp head « WordPress Codex

this is the hook for inserting things into the header.

Add Your Own Headers

Add Your Own Headers

Plugin allows header modification per page or post.

40+ Most Wanted Wordpress Tricks and Hacks

40+ Most Wanted Wordpress Tricks and Hacks | Wordpress

Wanted: WordPress Plugins for Me « Lorelle on WordPress

Wanted: WordPress Plugins for Me « Lorelle on WordPress

Ideas for plugins.

Monday, February 16, 2009

Real Programmers

Blue Lifestyle Print

Blue Lifestyle

Check this page for links to food, beverage, and lifestyle magazines.

Media Library Gallery - iXme

Media Library Gallery - iXme

This is a cool plugin that takes all image attachments from all posts/pages and pulls them into a single gallery.

Sunday, February 15, 2009

Create multi instances widget

GD Wordpress » Blog Archive » Create multi instances widget

How To Create Widgets with Control Panels

How To Create Widgets with Control Panels - Lonewolf Online

Saturday, February 14, 2009

How To Create Widgets

How To Create Widgets - Lonewolf Online

a "Hello World" widget app.

Centering an Image

"I'll just use good ole-fashioned html to center that image."

Please don't. The auto margin technique is what you need, you're just missing one vital piece.

First, let's make sure I'm clear on what is going on. You have a

with the image inside, and you want it centered? I assume you are introducing a line break before and a line break after in order to get the image onto it's own line. You then want to center the image on that line. Is this about right?

The problem here is that an image is an inline element. Even when you use
to move it onto it's own line, it remains part of an inline formatting context, which means that text-align:center will apply to the entire inline context. It also means that applying auto left and right margins won't work, since that technique works only with block level elements.

But what you want is for the image to be a block level element, anyway. If the image were block level, it would create it's own line breaks (eliminating the need for manually adding
s), and also establish it's own formatting context seperate from that of the inline content around it.

So the key here is in setting the image to display:block. You can then use the margin technique for compliant browsers, and add the text-align:center for older IE browsers that don't support auto margins. All without having any effect on the inline text of the paragraph.

html:

Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
myImage
Sed diam nonummy nibh euismod tincidunt ut laoreet dolore.



css:
p{
text-align:left;
}
img{
display:block; /*allows the element to take auto margins*/
margin:0 auto; /*centers in compliant browsers*/
text-align:center; /*centers in old versions of IE*/
}

Friday, February 13, 2009

48 Unique Ways To Use WordPress

48 Unique Ways To Use WordPress | Performancing.com

Always looking for new and novel ways to use Wordpress! :)

SIMILE Timeline WordPress Plugin

WordPress Plugin: SIMILE Timeline at freshlabs journal

I need one of these for SIMILE tables and maps.

Widgets 101

Simple widgets. Widgets 101. « WordPress Bits

Guide to developing a Hello World widget.

Follow on post is for making widgets with controls.

WPDesigner

WPDesigner » WordPress Themes, Blog Design, and Web Development, Best Web Hosting

I thought this blog changed and/or went away?

WP Media Library Gallery

WordPress › Media Library Gallery « WordPress Plugins

Automatically creates a gallery with every images posts have in attachment.

Thursday, February 12, 2009

WP Help Desk Plugin

WP Help Desk Plugin

Based on Hesk. Turns WP into a help desk platform.