WordPress: get depth of a post or category

0
November 16th, 2011

http://www.devdevote.com/cms/wordpress-hacks/get_depth

read more

WordPress: Getting the top-level parent

0
November 15th, 2011

http://www.yash-patel.com/2008/12/25/getting-the-top-level-parent/

read more

WordPress: Check if a category is an ancestor of a post

0
November 15th, 2011

http://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 more

WordPress: Adding an admin user to the database

0
November 8th, 2011

This has come in handy a few times recently: http://www.dnawebagency.com/how-to-add-an-admin-user-to-the-wordpress-database

read more

WordPress: Google Maps Geocoder

0
October 6th, 2011

http://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

WordPress: Remove thumbnails from post excerpts in Thematic

0
October 4th, 2011

http://themeshaper.com/forums/topic/excerpts-in-0978 //remove thematic default thumbnails function no_thumbs(){ return FALSE; } add_filter(‘thematic_post_thumbs’,’no_thumbs’); //re-enable thumbnail support add_theme_support( ‘post-thumbnails’ );

read more

WordPress: count the number of posts in the_loop

0
October 3rd, 2011

http://renditionprotocol.blogspot.com/2007/06/getting-count-of-posts-in-loop-in.html

read more

WordPress: how to track the post number in the_loop

0
October 3rd, 2011

http://wordpress.stackexchange.com/questions/5495/how-to-track-post-number-on-the-loop

read more

WordPress: wp_list_categories – highlight current category on single post page

0
October 3rd, 2011

http://wordpress.org/support/topic/wp_list_categories-highlight-current-category-when-viewing-single-post

read more

Centering Horizontal Nav Menu with CSS

0
September 27th, 2011

http://www.fortwaynewebdevelopment.com/css-center-unordered-list-ul-li-ol-menu-navigation/

read more

WordPress get current page ID outside the loop

0
September 1st, 2011

http://wordpress.org/support/topic/current-page-id-outside-the-loop

read more

jQuery library to extend attr to include url anchor

0
August 31st, 2011

http://austinpassy.com/2010/05/capturing-the-url-anchor-with-jquery-and-flashing-an-element/

read more

WordPress Content Scheduler

2
August 29th, 2011

Since Post Expirator doesn’t seem to work so well currently, I’ll look into this plugin: http://wordpress.org/extend/plugins/content-scheduler/

read more

WordPress – images for categories

0
August 11th, 2011

http://wordpress.org/extend/plugins/taxonomy-images/

read more

WordPress – add custom post types to rss feed

0
August 10th, 2011

http://www.ballyhooblog.com/add-custom-post-types-wordpress-main-feed/ http://www.wpbeginner.com/wp-tutorials/how-to-add-custom-post-types-to-your-main-wordpress-rss-feed/ http://somadesign.ca/wp-content/uploads/downloads/2010/05/sd_register_post_type.1.3.php_.txt http://wordpress.org/support/topic/custom-post-types

read more