function my_contactmethods( $contactmethods ) { // add $contactmethods['twitter'] = 'Twitter'; $contactmethods['facebook'] = 'Facebook'; $contactmethods['blog'] = 'Blog'; // remove unset($contactmethods['aim']); unset($contactmethods['jabber']); unset($contactmethods['yim']); return $contactmethods; } add_filter('user_contactmethods','my_contactmethods',10,1);
Read MoreSlideshow Gallery not displaying after recent update
/* // Inclusion: Einbindung von Slideshow Gallery Pro || Fritz echo "<!-- Gallery existiert GPS Start -->"; echo do_shortcode('[gpslideshow custom=1 align=right thumbs=off caption=on auto=on]'); echo "<!-- Gallery existiert GPS Ende -->"; */ // Inclusion: Slideshow Gallery Standard || Fritz || 22/11/2011 echo "<!-- Gallery existiert Start -->"; echo do_shortcode('[slideshow...
Read MoreAdding a meta_box to all Post Types
$post_types = get_post_types( array( '_builtin' => false ), 'objects' ); // Gets all custom types array_push( $post_types, get_post_type_object( 'post' ), get_post_type_object( 'page') ); // Adds back the 'post' and 'page' types while ommitting attachments, revisions, menus, etc. foreach ( $post_types as $type ) { add_meta_box( . . . ); }
Read MoreWP-o-Matic breaks WordPress Related Links
function adminInit() { auth_redirect(); // force display of a certain section $this->section = ($this->setup) ? ((isset($_REQUEST['s']) && $_REQUEST['s']) ? $_REQUEST['s'] : $this->sections[0]) : 'setup'; // if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) // die('Please switch to Firefox /...
Read MoreNextGen Gallery fails to create new gallery
For some reason the slug field was missing in the wp_6_ngg_gallery on one of my WordPress multisite blogs. The fix . . . ALTER TABLE `wp_6_ngg_gallery` ADD `slug` VARCHAR( 255 ) NULL AFTER `name`; ALTER TABLE `wp_6_ngg_pictures` ADD `image_slug` VARCHAR NOT NULL AFTER `pid`
Read MoreGrowing Onions
Springtime is right around the corner and the sun is getting stronger. The weather is still too cold to plant anything outside, but perfect for the windowsill. Just planted a second row of onions tonight; they’re a week behind the first...
Read MoreTransplanted Oak Tree
My transplanted oak tree that was grown from a volunteer in my yard. I mowed around it where it first grew for 5 years until it got this size. I read somewhere that you should transplant a tree in the Springtime before “bud burst” to avoid shock from...
Read More