<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Slopjongs weblog &#187; Wordpress</title>
	<atom:link href="http://slopjong.de/category/technology/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://slopjong.de</link>
	<description>Speedskating, tech stuff &#38; lots more</description>
	<lastBuildDate>Fri, 16 Jul 2010 07:32:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to use BackPress?</title>
		<link>http://slopjong.de/2010/02/21/how-to-use-backpress/</link>
		<comments>http://slopjong.de/2010/02/21/how-to-use-backpress/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 17:56:58 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=3414</guid>
		<description><![CDATA[For my recent project I want to use some WordPress core functions but it&#8217;s too disproportionate to install the full system. Then I found BackPress which is exactly what I need. It&#8217;s a collection of WordPress, bbPress and GlotPress libraries.
The usage of this library collection requires some work. In fact you only need to include [...]]]></description>
			<content:encoded><![CDATA[<p>For my recent project I want to use some WordPress core functions but it&#8217;s too disproportionate to install the full system. Then I found <a href="http://backpress.org" target="_blank">BackPress</a> which is exactly what I need. It&#8217;s a collection of WordPress, bbPress and GlotPress libraries.</p>
<p>The usage of this library collection requires some work. In fact you only need to include <em>functions.core.php</em> and the libraries you need. But to find out what files you exactly need can be hard because some functions have a lot of dependencies so my proposal is to include everything as you needn&#8217;t to care about any dependencies later on.</p>
<p>Furthermore some files have to be included exclusive-or what means that either the one has to be included or the other one. Download <strong><a href='http://slopjong.de/wp-content/2010/02/backpress.php_.zip'>backpress.php</a></strong> and include the extracted file in your web project.</p>
<pre>
<code>&lt;?php
// this constant is needed for class.bpdb-multi.php
// leave the value empty
define('BACKPRESS_PATH','');

// the core functions
include_once('backpress/includes/functions.core.php');

include_once('backpress/includes/class.bp-log.php');
include_once('backpress/includes/class.bp-roles.php');
include_once('backpress/includes/class.bp-sql-schema-parser.php');
include_once('backpress/includes/class.bp-user.php');
include_once('backpress/includes/class.bpdb-multi.php');
include_once('backpress/includes/class.bpdb.php');
include_once('backpress/includes/class.ixr.php');
include_once('backpress/includes/class.mailer-smtp.php');
include_once('backpress/includes/class.mailer.php');
include_once('backpress/includes/class.passwordhash.php');
include_once('backpress/includes/class.wp-ajax-response.php');
include_once('backpress/includes/class.wp-auth.php');
include_once('backpress/includes/class.wp-dependencies.php');
include_once('backpress/includes/class.wp-error.php');
include_once('backpress/includes/class.wp-http.php');
include_once('backpress/includes/class.wp-pass.php');
include_once('backpress/includes/class.wp-scripts.php');
include_once('backpress/includes/class.wp-styles.php');
include_once('backpress/includes/class.wp-taxonomy.php');
include_once('backpress/includes/class.wp-users.php');
include_once('backpress/includes/functions.bp-options.php');
include_once('backpress/includes/functions.compat.php');
include_once('backpress/includes/functions.formatting.php');
include_once('backpress/includes/functions.kses.php');
include_once('backpress/includes/functions.plugin-api.php');
include_once('backpress/includes/functions.shortcodes.php');
include_once('backpress/includes/functions.wp-cron.php');
include_once('backpress/includes/functions.wp-object-cache.php');
include_once('backpress/includes/functions.wp-scripts.php');
include_once('backpress/includes/functions.wp-styles.php');
include_once('backpress/includes/functions.wp-taxonomy.php');
include_once('backpress/includes/interface.bp-options.php');

// Only include one of these two
include_once('backpress/includes/loader.wp-object-cache-memcached.php');
//include_once('backpress/includes/loader.wp-object-cache.php');
?&gt;</code>
</pre>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2010%2F02%2F21%2Fhow-to-use-backpress%2F&amp;linkname=How%20to%20use%20BackPress%3F"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2010/02/21/how-to-use-backpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 Baker Final really final?</title>
		<link>http://slopjong.de/2009/06/13/wordpress-28-baker-final-really-final/</link>
		<comments>http://slopjong.de/2009/06/13/wordpress-28-baker-final-really-final/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 12:01:10 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=2953</guid>
		<description><![CDATA[The new WordPress release is available since two days but it&#8217;s still too buggy to call it &#8220;final&#8221;.
Christa reports
&#8230;the dashboard is messed up, image uploader won’t work, the tags menu won’t work…or any of the other menus for that matter…
I checked this and this forums and they&#8217;re plenty of bug reports. It&#8217;s a good idea [...]]]></description>
			<content:encoded><![CDATA[<p>The new WordPress release is available since two days but it&#8217;s still too buggy to call it &#8220;final&#8221;.</p>
<p><a href="http://christastjean.co.uk/" target="_blank">Christa</a> reports</p>
<blockquote><p>&#8230;the dashboard is messed up, image uploader won’t work, the tags menu won’t work…or any of the other menus for that matter…</p></blockquote>
<p>I checked <a href="http://wordpress.org/support/" target="_blank">this</a> and <a href="http://forum.wordpress-deutschland.org/" target="_blank">this</a> forums and they&#8217;re plenty of bug reports. It&#8217;s a good idea to not upgrade as long as most of these bugs aren&#8217;t fixed. If you already did <a href="http://christastjean.co.uk/?p=2964" target="_blank">here&#8217;s a description</a> how to downgrade.</p>
<p>Update:<br />
<em><a href="http://www.code-styling.de/deutsch/probleme-mit-wordpress-28-loesen" target="_blank">Code Styling</a></em> wrote an article about known problems. He published some descriptions how to solve some of them.</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F06%2F13%2Fwordpress-28-baker-final-really-final%2F&amp;linkname=WordPress%202.8%20Baker%20Final%20really%20final%3F"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2009/06/13/wordpress-28-baker-final-really-final/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Widget Disabler</title>
		<link>http://slopjong.de/2009/05/16/widget-disabler/</link>
		<comments>http://slopjong.de/2009/05/16/widget-disabler/#comments</comments>
		<pubDate>Fri, 15 May 2009 23:27:50 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=1442</guid>
		<description><![CDATA[If you are testing widgets on your WordPress powered blog it sometimes happens that the widget causes errors that make it impossible to remove the widget from the sidebar again. If these errors have bricked your system the only way to get it working again is to deactivate the whole plugin. But if you would [...]]]></description>
			<content:encoded><![CDATA[<p>If you are testing widgets on your WordPress powered blog it sometimes happens that the widget causes errors that make it impossible to remove the widget from the sidebar again. If these errors have bricked your system the only way to get it working again is to deactivate the whole plugin. But if you would like to use some parts of the plugin that are independent of the widget you can&#8217;t just reactivate the plugin because the widget will be present in the sidebar again. For this reason I wrote a plugin that removes all widgets of deactivated plugins from the sidebars.</p>
<p><a href="http://wordpress.org/extend/plugins/widget-disabler" target="_blank">Downlaod</a></p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F05%2F16%2Fwidget-disabler%2F&amp;linkname=Widget%20Disabler"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2009/05/16/widget-disabler/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comments are closed</title>
		<link>http://slopjong.de/2009/04/14/comments-are-closed/</link>
		<comments>http://slopjong.de/2009/04/14/comments-are-closed/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 15:31:21 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[From my personal life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=1346</guid>
		<description><![CDATA[ Sometimes I want to leave a comment after reading an interesting post. In some cases the comments are closed for whatever reason. This can be frustrating if there&#8217;s no other way to contact the blog&#8217;s owner and you know that it could fix his problem or you just want to let him know that [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:10px;" src="http://slopjong.de/wp-content/2009/04/kommentar-verbot-150x150.png" alt="Kommentarverbotsschild" title="Kommentarverbotsschild" width="90" height="90" class="alignright size-thumbnail wp-image-1350" /> Sometimes I want to leave a comment after reading an interesting post. In some cases the comments are closed for whatever reason. This can be frustrating if there&#8217;s no other way to contact the blog&#8217;s owner and you know that it could fix his problem or you just want to let him know that there&#8217;s a plugin for what he&#8217;s looking for. Thus the communication is broken.</p>
<p>Spam is not really a reason to close comments. There are services like <a href="http://akismet.com" target="_blank">Akismet</a> to seperate spam comments out. Since I use  <a href="http://akismet.com" target="_blank">Akismet</a> I had no spam problem anymore. It hasn&#8217;t filtered non-spam yet so it works perfectly on my blog.</p>
<p>Does it make sense to close comments? Are there other reasons to close them on live sites?</p>
<p>Related posts:<br />
<a href="http://www.plasticbag.org/archives/2005/04/trackback_is_dead_are_comments_dead_too/" target="_blank">Trackback is dead. Are Comments dead too?</a><br />
<a href="http://benatkin.com/weblog/2006/04/20/thoughts-on-closing-blog-comments/" target="_blank">Thoughts on Closing Blog Comments</a><br />
<a href="http://www.mysidedoor.com/2009/02/22/does-it-make-sense-to-close-comments-on-older-posts" target="_blank">Does it make sense to close comments on older posts?</a></p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F04%2F14%2Fcomments-are-closed%2F&amp;linkname=Comments%20are%20closed"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2009/04/14/comments-are-closed/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>One Word A Day</title>
		<link>http://slopjong.de/2009/03/20/one-word-a-day/</link>
		<comments>http://slopjong.de/2009/03/20/one-word-a-day/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 23:32:02 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=1046</guid>
		<description><![CDATA[This is my new plugin that displays a new English word in the sidebar every day. Furthermore a quiz is included. If you select the correct choice you can play a sound file to listen to that word.
To see One Word A Day in action take a look in my sidebar.
To reduce unneeded traffic I [...]]]></description>
			<content:encoded><![CDATA[<p>This is my new plugin that displays a new English word in the sidebar every day. Furthermore a quiz is included. If you select the correct choice you can play a sound file to listen to that word.</p>
<p>To see <em>One Word A Day</em> in action take a look in my sidebar.</p>
<p>To reduce unneeded traffic I built a cache for it.</p>
<p><a href="http://wordpress.org/extend/plugins/one-word-a-day/" target="_blank">Download</a></p>
<p><img class="alignleft size-full wp-image-2972" style="margin-right:10px;" title="Twitter badge" src="http://slopjong.de/wp-content/2009/03/twitter-4.png" alt="Twitter badge" width="100" height="60" /><a href="http://twitter.com/slopjong" target="_blank"> My personal twitter account</a><br />
<a href="http://twitter.com/wpjong" target="_blank"> My developer account</a></p>
<p><br style="clear:left;" /></p>
<h4>Notes</h4>
<ul>
<li>Only on workdays a new word appears. So don&#8217;t be inpatient if the word&#8217;s not changing on the weekend and holidays.</li>
<li>The widget is accessing the data from owad.de</li>
</ul>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F03%2F20%2Fone-word-a-day%2F&amp;linkname=One%20Word%20A%20Day"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2009/03/20/one-word-a-day/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Collapsing blogroll</title>
		<link>http://slopjong.de/2009/01/13/collapsing-blogroll/</link>
		<comments>http://slopjong.de/2009/01/13/collapsing-blogroll/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 22:06:14 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://slopjong.de/?p=535</guid>
		<description><![CDATA[Collroll is my new plugin that lets you insert your blogroll into a static page or into a post. The categories are collapsed by default. Here is how it looks like.
As Collroll uses the built-in blogroll no extra database table is used to store your bookmarks.  Once the plugin is activated the background color [...]]]></description>
			<content:encoded><![CDATA[<p>Collroll is my new plugin that lets you insert your blogroll into a static page or into a post. The categories are collapsed by default. <a href="/weblocs" target="_blank">Here</a> is how it looks like.</p>
<p>As Collroll uses the built-in blogroll no extra database table is used to store your bookmarks.  Once the plugin is activated the background color for the category titles can be set. Have a look at the screenshot.</p>
<p><a href="http://wordpress.org/extend/plugins/collroll/" target="_blank">Download</a> | <a id="show_stats" style="cursor: pointer;" onclick=" document.getElementById('collroll_stats').style.display=''; this.style.display='none'; document.getElementById('hide_stats').style.display=''; ">Show download statistics</a><a id="hide_stats" style="cursor: pointer; display:none;" onclick="document.getElementById('collroll_stats').style.display='none'; document.getElementById('show_stats').style.display=''; this.style.display='none';">Hide download statistics</a></p>
<div id="collroll_stats" style="display:none;"><object width="540" height="300" data="http://wordpress.org/extend/stats/charts.swf?library_path=http:%2F%2Fwordpress.org%2Fextend%2Fstats%2Fcharts_library&amp;php_source=http:%2F%2Fwordpress.org%2Fextend%2Fstats%2Fplugin-xml.php%3Fslug%3Dcollroll&amp;license=H1XVJS7RK7HL6-O5T4Q79KLYCK07EK" type="application/x-shockwave-flash"><param name="id" value="charts" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="src" value="http://wordpress.org/extend/stats/charts.swf?library_path=http:%2F%2Fwordpress.org%2Fextend%2Fstats%2Fcharts_library&amp;php_source=http:%2F%2Fwordpress.org%2Fextend%2Fstats%2Fplugin-xml.php%3Fslug%3Dcollroll&amp;license=H1XVJS7RK7HL6-O5T4Q79KLYCK07EK" /><param name="name" value="charts" /></object></div>
<p><img src="http://slopjong.de/wp-content/2009/01/collroll2.jpg" alt="Collroll admin page" title="Collroll admin page" width="508" height="408" class="aligncenter size-full wp-image-1039" /></p>
<p>Leave me a comment if you wish some features. You can also chat with me if you add me to your friends list on facebook <sup class='footnote'><a href='#fn-535-1' id='fnref-535-1'>1</a></sup>.</p>
<p>Ideas related to this plugin:</p>
<ul>
<li>Link descriptions (planned for the next version)</li>
<li>A browser plugin for direct bookmarking a web page on your blog. If you&#8217;re a desktop application developer contact me please.</li>
<li>Sharing bookmarks with other bloggers. For instance you will be able to show bookmarks of your friends on your site or just set a link to them.</li>
<li>Option to open the link in a new page by default regardless of which setting is set while adding a new link.</li>
</ul>
<div class='footnotes'>
<div class='footnotedivider'></div>
<ol>
<li id='fn-535-1'>I&#8217;m the one with the hockey stick in the background <span class='footnotereverse'><a href='#fnref-535-1'>&#8617;</a></span></li>
</ol>
</div>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2009%2F01%2F13%2Fcollapsing-blogroll%2F&amp;linkname=Collapsing%20blogroll"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2009/01/13/collapsing-blogroll/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>My first wordpress plugin</title>
		<link>http://slopjong.de/2008/06/20/my-first-wordpress-plugin/</link>
		<comments>http://slopjong.de/2008/06/20/my-first-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 23:44:59 +0000</pubDate>
		<dc:creator>slopjong</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.romainschmitz.eu/?p=32</guid>
		<description><![CDATA[During watching the football match &#8220;Germany &#8211; Portugal&#8221; I&#8217;ve planned how to realize my first plugin that will be published on the wordpress plugin page. I looked for free components and toolboxes to construct my calendar plugin. More details will be available here soon.
By the way Germany won &#8230;
]]></description>
			<content:encoded><![CDATA[<p>During watching the football match &#8220;Germany &#8211; Portugal&#8221; I&#8217;ve planned how to realize my first plugin that will be published on the wordpress plugin page. I looked for free components and toolboxes to construct my calendar plugin. More details will be available here soon.</p>
<p>By the way Germany won &#8230;</p>
<p><a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Delicious" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Digg" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Reddit" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Facebook" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/spurl?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Spurl" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/spurl.png" width="16" height="16" alt="Spurl"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Twitter" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/webnews?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Webnews" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/webnews.png" width="16" height="16" alt="Webnews"/></a> <a href="http://www.addtoany.com/add_to/yigg?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="YiGG" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yigg.png" width="16" height="16" alt="YiGG"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="MySpace" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/friendfeed?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="FriendFeed" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/friendfeed.png" width="16" height="16" alt="FriendFeed"/></a> <a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/livejournal?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin" title="LiveJournal" rel="nofollow" target="_blank"><img src="http://slopjong.de/wp-content/plugins/add-to-any/icons/livejournal.png" width="16" height="16" alt="LiveJournal"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fslopjong.de%2F2008%2F06%2F20%2Fmy-first-wordpress-plugin%2F&amp;linkname=My%20first%20wordpress%20plugin"><img src="http://slopjong.de/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://slopjong.de/2008/06/20/my-first-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
