init(); define( ‘BP_USE_WP_ADMIN_BAR’, false ); register_sidebar(array( 'name' => __( 'Buddypress' ), 'id' => 'right-sidebar', 'description' => __( 'Widgets in this area will be shown on the Buddypress right-hand side.' ), 'before_title' => '

', 'after_title' => '

' )); /* Customized the output of caption, you can remove the filter to restore back to the WP default output. Courtesy of DevPress. http://devpress.com/blog/captions-in-wordpress/ */ add_filter('img_caption_shortcode', 'cleaner_caption', 10, 3); function cleaner_caption($output, $attr, $content) { /* We're not worried abut captions in feeds, so just return the output here. */ if (is_feed()) return $output; /* Set up the default arguments. */ $defaults = array( 'id' => '', 'align' => 'alignnone', 'width' => '', 'caption' => '' ); /* Merge the defaults with user input. */ $attr = shortcode_atts($defaults, $attr); /* If the width is less than 1 or there is no caption, return the content wrapped between the [caption]< tags. */ if (1 > $attr['width'] || empty($attr['caption'])) return $content; /* Set up the attributes for the caption
. */ $attributes = ' class="figure ' . esc_attr($attr['align']) . '"'; /* Open the caption
. */ $output = ''; /* Allow shortcodes for the content the caption was created for. */ $output .= do_shortcode($content); /* Append the caption text. */ $output .= '
' . $attr['caption'] . '
'; /* Close the caption
. */ $output .= ''; /* Return the formatted, clean caption. */ return $output; } // Clean the output of attributes of images in editor. Courtesy of SitePoint. http://www.sitepoint.com/wordpress-change-img-tag-html/ function image_tag_class($class, $id, $align, $size) { $align = 'align' . esc_attr($align); return $align; } add_filter('get_image_tag_class', 'image_tag_class', 0, 4); function image_tag($html, $id, $alt, $title) { return preg_replace(array( '/\s+width="\d+"/i', '/\s+height="\d+"/i', '/alt=""/i' ), array( '', '', '', 'alt="' . $title . '"' ), $html); } add_filter('get_image_tag', 'image_tag', 0, 4); // img unautop, Courtesy of Interconnectit http://interconnectit.com/2175/how-to-remove-p-tags-from-images-in-wordpress/ function img_unautop($pee) { $pee = preg_replace('/

\\s*?(<\\/a>|)?\\s*<\\/p>/s', '

$1
', $pee); return $pee; } // Blbě to zarovnava obrazek //add_filter('the_content', 'img_unautop', 30); function add_social_contactmethod($contactmethods) { // Add Networks $contactmethods['twitter'] = 'Twitter URL'; $contactmethods['facebook'] = 'Facebook URL'; $contactmethods['linkedin'] = 'Linkedin URL'; $contactmethods['youtube'] = 'YouTube URL'; $contactmethods['google'] = 'Google+ URL'; $contactmethods['vimeo'] = 'Vimeo URL'; $contactmethods['flickr'] = 'Flickr URL'; return $contactmethods; } add_filter('user_contactmethods', 'add_social_contactmethod', 10, 1); ?>