About Konstantin Obenland

Konstantin Obenland ist Professional Scrum Master I sowie Certified Scrum Product Owner und widmet sich seit einiger Zeit den Prozessen in der agilen Softwareentwicklung und der erfolgreichen Implementierung und Optimierung von Scrum in Entwicklerteams. Ausserdem beschäftigt er sich mit WordPress-Entwicklung und hat schon mehrere Plugins veröffentlicht.

WordPress Community Summit

2012 has been pretty great to me so far, especially when it comes to the WordPress site of my life:

But all this was topped today, when I received an invitation to the WordPress Community Summit on Tybee Island, GA in October!

Twenty Eleven Showcase Slider

Adds carousel functionality to the Twenty Eleven Showcase slider.

Description

This plugin enables the showcase template automatically slide through all the sticky posts. It simulates the mouse click that triggers the slide change every four seconds.

Installation

  1. Download Twenty Eleven Showcase Slider.
  2. Unzip the folder into the `/wp-content/plugins/` directory.
  3. Activate the plugin through the ‘Plugins’ menu in WordPress.

Frequently Asked Questions

None asked yet.

The leanest comments.php file ever

More to be seen as a proof of concept than the next step in Theme Development evolution, in version 1.7.0 The Bootstrap’s comments.php file will contain not more than a single call to comments_form().

<?php
/** comments.php
 *
 * The template for displaying Comments.
 *
 * The area of the page that contains both current comments
 * and the comment form. The actual display of comments is
 * handled by callbacks which are located in the functions.php file.
 *
 * @author		Konstantin Obenland
 * @package		The Bootstrap
 * @since		1.0.0 - 05.02.2012
 */

comment_form();

/* End of file comments.php */
/* Location: ./wp-content/themes/the-bootstrap/comments.php */

Many Theme authors will argue that it doesn’t make much sense to move the entire comment business out of comments.php and they are probably right. But when I realized that it was possible to have the entire file consist of only one function call, I wanted to implement it and try it out.