Posts tagged with wordpress

links for 09 january 2010

Posted on 09 January 2010 at 11:55 PM | Filed under link
How to create a custom RSS feed in Wordpress in 12 lines of code
A neat way of implementing custom RSS feeds in WordPress.
Custom RSS feeds in WordPress
Custom template via Pages; integration via FeedBurner.
Wordpress custom RSS template
Pastebin contents.
Easy custom feeds in WordPress
Instructions for creating feeds via Pages.

how to filter post titles

Posted on 01 January 2010 at 4:46 PM | Filed under code

If you know that you will want to apply a filter to all of your post titles in WordPress, such as forcing uppercase, lowercase, or title capitalization, you can use a filter to do so. The filter below will force a title to lowercase as the post is saved:

  1. if ( !function_exists( 'ucc_post_title_filter' ) ) :
  2. function
  3. ucc_post_title_filter( $data ) {
  4.   $title = $data['post_title'];
  5.  
  6.   $title = strtolower( $title );
  7.   $data['post_title'] = $title;
  8.  
  9.   return( $data );
  10. }
  11. add_filter( 'wp_insert_post_data' , 'ucc_post_title_filter' );
  12. endif;

On line 6, strtolower() can be exchanged for any text-transforming function.

links for 16 december 2009

Posted on 16 December 2009 at 11:55 PM | Filed under link
Pinafores, petticoats & pantaloons
Commercial sewing patterns for frilly girly things.
How to load JavaScript in WordPress plugins
A discussion of the merits of head hoks versus script API.
Recipes finder
USDA database of recipes submitted by nutrition and health professionals and organizations.
Cufon and jQuery cycle
How to resolve a conflict in font refreshing.
10 Useful jQuery techniques to improve your code
Streamline and simplify web site development
☃ Unicode holiday xmas tree
Decorate your own semantic Christmas tree.

links for 30 november 2009

Posted on 30 November 2009 at 11:55 PM | Filed under link
How to wirewrap
Instructions for a wire-wrapped faceted pendant.
Distributed Wordpress admin account cracking
The acquired script is written in PHP and performs brute force cracking attempts to Wordpress admin accounts.
Bespin
A web-based web-focused extensible code editor from Mozilla Labs using HTML5.

links for 18 october 2009

Posted on 18 October 2009 at 11:55 PM | Filed under link
Custom feeds in WordPress
Instructions for creating custom feeds.
Consolidate options with arrays in your WordPress plugins
Consolidate options with arrays in your WordPress plugins.

links for 29 september 2009

Posted on 29 September 2009 at 10:34 AM | Filed under link
Dashboard widgets API
Instructions for adding and removing widgets from the Dashboard.
Meg's jogless jog
Technique for color changes in the round.
Simplest cap of all
Basic stockinette knitted cap pattern with k1p1 ribbing and k2tog decreases,
Toddler backpack sewing pattern
Sewing pattern for a basic toddler backpack. PDF format; cottage licensing available.
markItUp! universal markup editor
JavaScript plugin built on jQuery that allows you to turn a textarea into a markup editor.

links for 28 september 2009

Posted on 28 September 2009 at 10:31 AM | Filed under link
query_posts sticky post parameters
WordPress Codex entry regarding sticky posts.
Definitive sticky posts guide for WordPress 2.7
Sticky posts and how to use them to your advantage on a WordPress site.

links for 01 september 2009

Posted on 02 September 2009 at 1:00 AM | Filed under link
A to Z of WordPress .htaccess hacks
Useful tips for hardening a WordPress installation against spam and attacks.

links for 09 august 2009

Posted on 09 August 2009 at 12:01 PM | Filed under link
Progressive phonics
Free phonics and reading program.
Magic cast-on for toe-up socks
Invisible cast-on technique for toe-up socks.
10 most downloaded Wordpress plugins of all time
Useful guide to top ten plugins.
Tiptop toes
Toe techniques for toe-up socks and slippers.

yummy trees

Posted on 13 May 2009 at 10:46 AM | Filed under blog

Thank goodness I'm nutty about aggregating my links back to my site, because otherwise I'd have lost them all in the great Ma.gnolia database fail of 2009. As it stands, I just had to dig up my Delicious password and update my Postalicious plugin settings. It only took four months for me to actually do that.

Copyright © 2003-2010 J.M. Dodd. | XHTML 1.0 Strict | CSS | RSS | 508