http://lifeonlars.com/wordpress/how-to-add-multiple-featured-images-in-wordpress/ $imageid = MultiPostThumbnails::get_post_thumbnail_id(‘post’, ‘special-preview’, $post->ID); $imageurl = wp_get_attachment_image_src($imageid,’large’); $imageurl[0]
read morehttp://www.bloggingpro.com/archives/2010/01/15/how-to-display-your-wordpress-category-list-in-multiple-columns/
read morehttp://stackoverflow.com/questions/6064893/jquery-cycle-plugin-delay-interval-between-slides-question http://jsfiddle.net/7jJe3/ function timeoutfn(currSlideElement, nextSlideElement, options, forwardFlag) { var imgtime = 5000; var blanktime = 2000; if ($(currSlideElement).is(‘img’)) return imgtime; return blanktime; }; $(function() { $(‘#slideshow’).cycle({ fx: ‘fade’, speed: 400, timeoutFn: timeoutfn }); }); I tweaked the code to check if the image was the last one within a container div, and if so, pause [...]
read morehttp://php.net/manual/en/function.htmlspecialchars-decode.php Needed this when I was pulling content from a custom field in WordPress that was defined in the editing screen as a textarea that was encoding html special characters.
read morehttp://stackoverflow.com/questions/306583/this-selector-and-children jQuery(this).children(“img”);
read morehttp://wordpress.org/support/topic/ifelse-statement-for-if-a-page-has-child-pages
read morehttp://www.blackbam.at/blackbams-blog/2011/10/08/determine-if-a-wordpress-page-or-category-is-in-the-current-ancestorchild-tree-insideoutside-the-loop/
read moreThis has come in handy a few times recently: http://www.dnawebagency.com/how-to-add-an-admin-user-to-the-wordpress-database
read morehttp://www.onerutter.com/open-source/wp-custom-field-geocoder-update-v-02.html I used a customized version of this with the custom metaboxes library. I had to change the post update action in the geocoder code to ‘save_post’ and give it a priority of 15 so it wouldn’t conflict with the metabox code. I also commented out the response code that displays a geocode error. It [...]
read more