<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>bueltge.de [by:ltge.de] &#187; Tag</title>
	<atom:link href="http://bueltge.de/tag/tag/feed/" rel="self" type="application/rss+xml" />
	<link>http://bueltge.de</link>
	<description>Frank Bültge schreibt auf bueltge.de zu den Themen Webentwicklung &#38; design, WordPress, Literatur und andere Themen bezüglich Internet und Development</description>
	<lastBuildDate>Mon, 06 Feb 2012 12:19:43 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sticky-Funktionalität ab WordPress 2.7</title>
		<link>http://bueltge.de/sticky-funktionalitaet-wordpress-27/788/</link>
		<comments>http://bueltge.de/sticky-funktionalitaet-wordpress-27/788/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 23:56:00 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WP2.7]]></category>

		<guid isPermaLink="false">http://bueltge.de/?p=788</guid>
		<description><![CDATA[Ab WordPress 2.7 gibt es die Möglichkeit, dass man einen Beitrag mit dem Flag Sticky versieht und damit bleibt es innerhalb des Loop immer an oberster Stelle. Bisher konnte man dies nur per Plugin lösen. Infos auch in <a href="http://bueltge.de/wordpress-27-einblicke/736/">einigen News zu 2.7</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://bueltge.de/wp-content/images/wp27/wp27-sticky.png" alt="Sticky in WP 2.7" /><br />
Ab WordPress 2.7 gibt es die Möglichkeit, dass man einen Beitrag mit dem Flag Sticky versieht und damit bleibt es innerhalb des Loop immer an oberster Stelle. Bisher konnte man dies nur per Plugin lösen. Infos auch in <a href="http://bueltge.de/wordpress-27-einblicke/736/">einigen News zu 2.7</a>.</p>
<p>Die neue Möglichkeit besteht im Bereich der Veröffentlichung, des Status, dort wo man den Termin des Beitrags editieren konnte. Das ist einfach und schnell gemacht, dazu muss man nichts anpassen oder neu kennen lernen.</p>
<p>Aber was, wenn man ein Sticky entsprechend formatieren will? Dafür gibt es eine neue Funktion - <code>post_class()</code>. Diese gibt die Klassen für den jeweiligen Beitrag aus und damit auch die Klasse <code>sticky</code>, wenn es sich um einen Sticky handelt.<br />
Zusätzlich werden Klassen für Kategorien und Tags ausgegeben. Dazu ein Beispiel und nähere Erläuterungen.<br />
<span id="more-788"></span></p>
<h4>Beispielausgabe</h4>
<pre><code>
<div id="post-12" class="post sticky hentry category-allgemein category-wordpress tag-umfrage tag-wordpress">
</code></pre>
<p>Die obige Ausgabe resultiert aus dem folgenden Code im Template:</p>
<pre><code>
<div id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class() ?&gt;>
</code></pre>
<h4>Hintergründe</h4>
<p>Die Funktion gibt also alle möglichen Klassen aus, wobei immer die</p>
<ul>
<li>Klasse zur Art ausgeben wird - <code>post</code></li>
<li>ob es sich um ein Stick-Post handelt - <code>sticky</code></li>
<li>für die Erweiterung hAtom - <code>hentry</code> (siehe <a href="http://microformats.org/wiki/hatom#Schema">Schema der Mikroformate</a>)</li>
<li>alle Kategorien, denen der Beitrag zugeordnet ist</li>
<li>und alle Tags, die zugewiesen sind.</li>
</ul>
<p>Die Funktion kann aber auch zusätzliche Klassen ausgeben. Besonders nützlich wenn man ein bestehendes Theme, welches schon vor Version 2.7 von WordPress im Einsatz ist und ein Klasse hat, erweitern will. Dies geht, in dem man die Klasse übergibt.</p>
<pre><code>
post_class( 'meine_klasse')
</code></pre>
<p>Im weiteren kann man noch die ID eines Beitrags übergeben. Von diesem Beitrag werden dann die Klassen gezogen. Auch dazu ein Beispiel.</p>
<pre><code>
post_class( 'meine_klasse', '9')
</code></pre>
<p>Im Standard sieht die Funktion wie folgt aus.</p>
<pre><code>
post_class( $class = '', $post_id = null )
</code></pre>
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/sticky-funktionalitaet-wordpress-27/788/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/sticky-funktionalitaet-wordpress-27/788/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/wp27/wp27-sticky.png" />
		<media:content url="http://bueltge.de/wp-content/images/wp27/wp27-sticky.png" medium="image">
			<media:title type="html">Sticky in WP 2.7</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress Help Cheat</title>
		<link>http://bueltge.de/wordpress-help-cheat/548/</link>
		<comments>http://bueltge.de/wordpress-help-cheat/548/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 11:15:39 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://bueltge.de/wordpress-help-cheat/548/</guid>
		<description><![CDATA[WPCandy hat ein einfaches, mit den wichtigsten Daten für Theme-Entwickler, WordPress Help Cheat erstellt. Download steht als Adobe PDF zur Verfügung. Themen sind: Basic Template Files Template Tags für Header Template Tags für Templates, Content Extras wie Konstanten, Permalink, Quicktags Für die Übersicht (fast)aller Tags bietet sich ein weiteres WordPress Cheat Sheet an, welches ich [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpcandy.com/the-wordpress-help-sheet/">WPCandy</a> hat ein einfaches, mit den wichtigsten Daten für Theme-Entwickler, WordPress Help Cheat erstellt. Download steht als Adobe PDF zur Verfügung.<span id="more-548"></span></p>
<p><img class="centered" src="http://bueltge.de/wp-content/images/wphelpcheat.jpg" alt="WP Help Cheat" /></p>
<h4>Themen sind:</h4>
<ul>
<li>Basic Template Files</li>
<li>Template Tags für Header</li>
<li>Template Tags für Templates, Content</li>
<li>Extras wie Konstanten, Permalink, Quicktags</li>
</ul>
<p>Für die Übersicht (fast)aller Tags bietet sich ein weiteres <a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205">WordPress Cheat Sheet</a> an, welches ich in Zukunft sicher wieder ausbaue.<br />
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/wordpress-help-cheat/548/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/wordpress-help-cheat/548/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/wphelpcheat.jpg" />
		<media:content url="http://bueltge.de/wp-content/images/wphelpcheat.jpg" medium="image">
			<media:title type="html">WP Help Cheat</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>Jerome&#039;s Keywords und WordPress 2.1</title>
		<link>http://bueltge.de/jeromes-keywords-und-wordpress-21/401/</link>
		<comments>http://bueltge.de/jeromes-keywords-und-wordpress-21/401/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 14:00:30 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://bueltge.de/jeromes-keywords-und-wordpress-21/401</guid>
		<description><![CDATA[Arne Brachhold nutzt das Plugin Jerome&#8217;s Keywords und hat einen Fehler bei der Verwendung unter WordPress 2.1 festgestellt. Um diesen zu beheben, muss lediglich die Funktion keywords_update($id) verändert werden. Eine detaillierte Erläuterung findet sich auf dem Beitrag von Arne &#8211; Fixing Jerome’s Keywords and WordPress 2.1. &#169; Frank B&#252;ltge, All rights reserved / Alle Rechte [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.arnebrachhold.de">Arne Brachhold</a> nutzt das Plugin Jerome&#8217;s Keywords und hat einen Fehler bei der Verwendung unter WordPress 2.1 festgestellt. Um diesen zu beheben, muss lediglich die Funktion keywords_update($id) verändert werden.</p>
<p>Eine detaillierte Erläuterung findet sich auf dem Beitrag von Arne &#8211; <a href="http://www.arnebrachhold.de/2007/03/03/fixing-error-bug-in-jeromes-keywords-and-wordpress-2-1">Fixing Jerome’s Keywords and WordPress 2.1</a>.<br />
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/jeromes-keywords-und-wordpress-21/401/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/jeromes-keywords-und-wordpress-21/401/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/favicon.ico" />
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>tingelets zeigen Tags</title>
		<link>http://bueltge.de/tingelets-zeigen-tags/385/</link>
		<comments>http://bueltge.de/tingelets-zeigen-tags/385/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 10:19:26 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Webküche]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[tingelets]]></category>
		<category><![CDATA[Webdeveloper]]></category>
		<category><![CDATA[xHTML]]></category>

		<guid isPermaLink="false">http://bueltge.de/tingelets-zeigen-tags/385</guid>
		<description><![CDATA[Das Projekt tingelets von Maurice Kühlborn hilft dem Webdesigner beim Aufzeigen von Tags im Browser, egal um welchen Browser es sich handelt. Mit Hilfe von Lesezeichen kann man die verschiedenen tingelets ablegen und schnell den gesuchten Tag im Browser visualisieren. Das Darstellen der Tags geschieht mittels kleiner Bildchen (png), die im Hintergrund des jeweiligen Bereiches [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://bueltge.de/wp-content/images/tingelets.png" alt="tingelets Logo" />Das Projekt <a href="http://www.tingelets.com/">tingelets</a> von <a href="http://www.minimalweb.de/">Maurice Kühlborn</a> hilft dem Webdesigner beim Aufzeigen von Tags im Browser, egal um welchen Browser es sich handelt. Mit Hilfe von Lesezeichen kann man die verschiedenen tingelets ablegen und schnell den gesuchten Tag im Browser visualisieren. Das Darstellen der Tags geschieht mittels kleiner Bildchen (png), die im Hintergrund des jeweiligen Bereiches dargestellt werden. Wird das Bookmarklet geklickt, so wird das jeweilige Bild im Hintergrund als <em>background</em> geladen und der Tag-bereich ist gut zu erkennen. Die kleinen Bildchen beinhalten den Namen des Tags und erleichtern so das Erkennen der Tagbereiche.<br />
Ebenso kann man eigene class, IDs und Tags integrieren, dafür steht ein simples JS bereit. Damit steht eine Bereicherung, die Browserübergreifend ist, bereit.</p>
<p>Mehr Hintergründe und Demos sind im <a href="http://infochord.de/2007/2/2/tingelets-bookmarklets-for-web-developers">Weblog</a> von Maurice nachzulesen.</p>
<p>Wer mag, der kann hier meine html-Datei downloaden und in den Browser importieren, so sind die wichtigsten Tags in den Favoriten, im Ordner tingelets, abgelegt.<br />
<img class="alignleftob" src="http://bueltge.de/wp-content/images/txt.png" alt="Download als html-Datei" /><br />
Download als html-Datei: <a href="/wp-content/download/wk/tingelets.html" >tingelets.html</a> - 6 KByte<br />
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/tingelets-zeigen-tags/385/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/tingelets-zeigen-tags/385/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/tingelets.png" />
		<media:content url="http://bueltge.de/wp-content/images/tingelets.png" medium="image">
			<media:title type="html">tingelets Logo</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/images/txt.png" medium="image">
			<media:title type="html">Download als html-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>Update für WordPress Cheat Sheet Template Tags</title>
		<link>http://bueltge.de/update-fuer-wordpress-cheat-sheet-template-tags/382/</link>
		<comments>http://bueltge.de/update-fuer-wordpress-cheat-sheet-template-tags/382/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 13:43:08 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Webküche]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://bueltge.de/update-fuer-wordpress-cheat-sheet-template-tags/382</guid>
		<description><![CDATA[Das Cheat Sheet für die Template Tags von WordPress wurde überarbeitet und enthält nun auch alle neuen Tags, die seit Version 2.1 hinzu gekommen sind. Funktionen, die nicht mehr zur Verfügung stehen sind markiert, so dass das Cheat ab Version 1.2 bis zur aktuellen Version 2.1 genutzt werden kann - eine schneller Überblick eben. Weitere [...]]]></description>
			<content:encoded><![CDATA[<p>Das <a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205">Cheat Sheet</a> für die Template Tags von WordPress wurde überarbeitet und enthält nun auch alle <a href="http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374">neuen Tags, die seit Version 2.1</a> hinzu gekommen sind. Funktionen, die nicht mehr zur Verfügung stehen sind markiert, so dass das <a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205">Cheat</a> ab Version 1.2 bis zur aktuellen Version 2.1 genutzt werden kann - eine schneller Überblick eben.</p>
<p><a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205">Weitere Cheat Sheets</a> für WordPress sind im <a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205">Beitrag</a> zu finden.</p>
<p><img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="/wp-content/download/wp/WP_Theme_Tags.pdf" >WP_Theme_Tags.pdf</a> - 17 KByte<br />
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/update-fuer-wordpress-cheat-sheet-template-tags/382/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/update-fuer-wordpress-cheat-sheet-template-tags/382/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/pdf.png" />
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress 2.1 ist anders, auch bei Template Tags und Funktionen</title>
		<link>http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374/</link>
		<comments>http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 21:34:42 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374</guid>
		<description><![CDATA[<a href="http://lorelle.wordpress.com/">Lorelle</a> klärt uns auf - unbedingt Lesen - <a href="http://lorelle.wordpress.com/2007/01/26/wordpress-21-template-tag-and-function-changes/">WordPress 2.1: Template Tag and Function Changes</a>

Die Veränderungen, die mit WordPress 2.1 kommen, sind relativ gering. Jedoch macht der eine oder andere Tag im Theme Probleme.]]></description>
			<content:encoded><![CDATA[<p><a href="http://lorelle.wordpress.com/">Lorelle</a> klärt uns auf - unbedingt Lesen - <a href="http://lorelle.wordpress.com/2007/01/26/wordpress-21-template-tag-and-function-changes/">WordPress 2.1: Template Tag and Function Changes</a></p>
<p>Die Veränderungen, die mit WordPress 2.1 kommen, sind relativ gering. Jedoch macht der eine oder andere Tag im Theme Probleme. Im folgenden alle Veränderungen.</p>
<ul>
<li><a href="http://codex.wordpress.org/Template_Tags/wp_list_categories" title="wp_list_categories">wp_list_categories</a> replaces <a href="http://codex.wordpress.org/Template_Tags/list_cats" title="list_cats">list_cats</a> and <a href="http://codex.wordpress.org/Template_Tags/wp_list_cats" title="wp_list_cats">wp_list_cats</a></li>
<li>get_author_posts_url replaces <a href="http://codex.wordpress.org/Template_Tags/the_author_link" title="the_author_link">the_author_link</a></li>
<li><a href="http://codex.wordpress.org/Template_Tags/wp_dropdown_categories" title="wp_dropdown_categories">wp_dropdown_categories</a> replaces <a href="http://codex.wordpress.org/Template_Tags/dropdown_cats" title="dropdown_cats">dropdown_cats</a></li>
<li>wp_get_archives replaces <a href="http://codex.wordpress.org/Template_Tags/get_archives" title="get_archives">get_archives</a></li>
<li><a href="http://codex.wordpress.org/Template_Tags/wp_list_bookmarks" title="wp_list_bookmarks">wp_list_bookmarks</a> replaces <a href="http://codex.wordpress.org/Template_Tags/get_bookmarks_list" title="get_bookmarks_list()">get_bookmarks_list</a>, get_links_list, <a href="http://codex.wordpress.org/Template_Tags/get_bookmarks" title="get_bookmarks()">get_bookmarks</a>, and some other bookmark list template tags.</li>
<li><a href="http://codex.wordpress.org/Template_Tags/wp_link_pages" title="wp_link_pages()">wp_link_pages</a> replaces <a href="http://codex.wordpress.org/Template_Tags/link_pages" title="link_pages">link_pages</a></li>
<li><a href="http://codex.wordpress.org/Template_Tags/the_modified_date" title="the_modified_date">the_modified_date</a> (new?)</li>
<li><a href="http://codex.wordpress.org/Template_Tags/next_post_link" title="next_post_link">next_post_link</a> and <a href="http://codex.wordpress.org/Template_Tags/previous_post_link" title="previous_post_link">previous_post_link</a> replace <a href="http://codex.wordpress.org/Template_Tags/previous_post" title="previous_post">previous_post</a> and <a href="http://codex.wordpress.org/Template_Tags/previous_post" title="previous_post">previous_post</a> (Still verifying)</li>
</ul>
<ul>
<li>get_postdata replaces <a href="http://codex.wordpress.org/Function_Reference/get_post" title="get_post">get_post</a></li>
<li>get_linksbyname (new): Gets the links associated with category cat_name.</li>
<li>get_linkz replaces get_linkFUNCTION (various functions replaced by one)</li>
<li>get_options will replace <a href="http://codex.wordpress.org/Function_Reference/get_settings" title="get_settings">get_settings</a></li>
<li>the_search_query may replace <a href="http://codex.wordpress.org/index.php?title=Function_Reference/wp_specialchars&amp;action=edit" title="wp_specialchars">wp_specialchars</a></li>
<li>language_attributes (new): adds language attributes to HTML head tag</li>
<li>current_user_can replaces user_can_FUNCTION (various functions replaced by one)</li>
<li>get_the_category_by_ID replaces <a href="http://codex.wordpress.org/Template_Tags/the_category_ID" title="the_category_ID">the_category_ID</a></li>
</ul>
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/wordpress-21-ist-anders-auch-bei-template-tags-und-funktionen/374/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/favicon.ico" />
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>WP - WordPress Cheat Sheet für Theme Tags und Plugin-API</title>
		<link>http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205/</link>
		<comments>http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205/#comments</comments>
		<pubDate>Tue, 18 Jul 2006 11:24:01 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205/</guid>
		<description><![CDATA[Damit die Arbeit mit WordPress ein wenig einfacher ist, zumindest beim Schreiben von Plugins oder dem Erstellen eines Themes suchte ich schon lange passende Cheat Sheets für meine Arbeit mit WP. Leider wurde ich nie so richtig fündig und ich arbeite meist mit den zuständigen Seiten. Da ich aber dem alten Semester angehöre, bevorzuge ich [...]]]></description>
			<content:encoded><![CDATA[<p>Damit die Arbeit mit WordPress ein wenig einfacher ist, zumindest beim Schreiben von Plugins oder dem Erstellen eines Themes suchte ich schon lange passende Cheat Sheets für meine Arbeit mit WP. Leider wurde ich nie so richtig fündig und ich arbeite meist mit den zuständigen Seiten.<br />
Da ich aber dem alten Semester angehöre, bevorzuge ich Lesestoff in Papierform und habe mir alle relevanten Tags für die Plugin-API und die Theme-Tags auf zwei Seiten gebracht.<br />
Vielleicht kann sie der eine oder andere ebenso gebrauchen, dann viel Freude damit.</p>
<p>Alle Theme-Tags können ebenso nochmal auf dem Beitrag <a href="http://bueltge.de/wp-wordpress-template-tags-uebersicht/147/">WP - WordPress Template Tags Übersicht</a> nachgelesen werden, bzw. werden dort die Links zu näheren Beschreibungen gelistet.</p>
<h3>Download:</h3>
<p><img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="/wp-content/download/wp/WP_Plugin_API.pdf" >WP_Plugin_API.pdf</a> - 25 KByte</p>
<p><img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="/wp-content/download/wp/WP_Theme_Tags.pdf" >WP_Theme_Tags.pdf</a> - 17 KByte<br />
<br style="clear:left" /><br />
<strong>Update:</strong><br />
Zusätzlich gbt es jetzt noch eine Übersicht des WordPress <strong>The Loop</strong> und der Code für ein <strong>Widget</strong> Plugin.<br />
<img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="/wp-content/download/wp/WP_loop.pdf" >WP_loop.pdf</a> - 23 KByte</p>
<p><img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="/wp-content/download/wp/WP_Widget.pdf" >WP_Widget.pdf</a> - 23 KByte<br />
<br style="clear:left" /></p>
<h4>Weiterführende Links:</h4>
<ul>
<li>Plugin API - <a href="http://codex.wordpress.org/Plugin_API">codex.wordpress.org/Plugin_API</a></li>
<li>WP Coding Standards - <a href="http://codex.wordpress.org/WordPress_Coding_Standards">codex.wordpress.org/WordPress_Coding_Standards</a></li>
<li><a href="http://wphooks.flatearth.org/">wphooks.flatearth.org</a> - Blog zu WordPress Hooks, ausführlich gelistet und erklärt</li>
</ul>
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/wp-wordpress-cheat-sheet-fuer-theme-tags-und-plugin-api/205/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/pdf.png" />
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
		<item>
		<title>WP - WordPress Template Tags Übersicht</title>
		<link>http://bueltge.de/wp-wordpress-template-tags-uebersicht/147/</link>
		<comments>http://bueltge.de/wp-wordpress-template-tags-uebersicht/147/#comments</comments>
		<pubDate>Mon, 06 Mar 2006 20:57:15 +0000</pubDate>
		<dc:creator>Frank Bültge</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://bueltge.de/wp-wordpress-template-tags-uebersicht/147</guid>
		<description><![CDATA[Mit Hilfe von Template-Tags werden die Information in das Frontend von WordPress, in die Website bzw. -blog, geladen. Wer sich an die Arbeit macht, und ein eigenes Theme erstellen möchte, muss sich mit diesen Tags auseinander setzen. Mit diesen Tags kann man seinen Blog individuell und interessant gestalten. Im weiteren dieser Seite ist eine Liste [...]]]></description>
			<content:encoded><![CDATA[<p>Mit Hilfe von Template-Tags werden die Information in das Frontend von WordPress, in die Website bzw. -blog, geladen.<br />
Wer sich an die Arbeit macht, und ein eigenes Theme erstellen möchte, muss sich mit diesen Tags auseinander setzen. Mit diesen Tags kann man seinen Blog individuell und interessant gestalten.<br />
Im weiteren dieser Seite ist eine Liste der Template Tags hinterlegt, fuktionsspezifisch sortiert, mit jeweils einem Link zur deutschen und englischen Dokumentation, wenn diese verfügbar ist.</p>
<p>Jeder einzelne Tag hat eine Reihe von Funktionsparameter, die auf den jeweiligen Links zu finden sind. Diese Parameter werden nach dem Tag übergeben.</p>
<h4>Beispiel:</h4>
<p>Der Tag the_author wird folgender maßen übergeben:</p>
<pre><code>&lt;?php the_author('idmode', display) ?&gt;</pre>
<p>Die folgende Zeile gibt den Autorennamen aus, unter Verwendung der Standardeinstellungen.</p>
<pre><code>&lt;p&gt;Der Beitrag ist von &lt;?php the_author() ?&gt;&lt;/p&gt;</code></pre>
<p>Die folgende Zeile gibt den Login-Namen aus, in dem <em>idmode</em> mit Funktionsparameter <code>login</code> genutzt wird.</p>
<pre><code>&lt;p&gt;Der Beitrag ist von &lt;?php the_author('login') ?&gt;&lt;/p&gt;</code></pre>
<h3>Update:</h3>
<p>Nun auch als Cheat Sheet im pdf-Format zum Download.<br />
<img class="alignleftob" src="http://bueltge.de/wp-content/images/pdf.png" alt="Download als pdf-Datei" /><br />
Download als pdf-Datei: <a href="http://bueltge.de/wp-content/download/wp/WP_Theme_Tags.pdf" >WP_Theme_Tags.pdf</a> - 23 KByte<br />
<br class="clear" /></p>
<h4>Autor Tags</h4>
<ul>
<li>the_author <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author" title="zur englischen Doku">en</a></li>
<li class="second">the_author_description <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_description" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_description" title="zur englischen Doku">en</a></li>
<li>the_author_login <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_login" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_login" title="zur englischen Doku">en</a></li>
<li>the_author_firstname <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_firstname" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_firstname" title="zur englischen Doku">en</a></li>
<li>the_author_lastname <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_lastname" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_lastname" title="zur englischen Doku">en</a></li>
<li>the_author_nickname <a href="http://doku.wordpress-deutschland.org/Template_Tags/" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_nickname" title="zur englischen Doku">en</a></li>
<li>the_author_ID <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_nickname" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_ID" title="zur englischen Doku">en</a></li>
<li>the_author_email <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_email" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_email" title="zur englischen Doku">en</a></li>
<li>the_author_url <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_url" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_url" title="zur englischen Doku">en</a></li>
<li>the_author_icq <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_icq" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_icq" title="zur englischen Doku">en</a></li>
<li>the_author_aim <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_aim" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_aim" title="zur englischen Doku">en</a></li>
<li>the_author_yim <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_yim" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_yim" title="zur englischen Doku">en</a></li>
<li>the_author_msn <a href="http://doku.wordpress-deutschland.org/Template_Tags/" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_msn" title="zur englischen Doku">en</a></li>
<li>the_author_posts <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_msn" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_posts" title="zur englischen Doku">en</a></li>
<li>the_author_posts_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_author_posts_link" title="zur englischen Doku">en</a></li>
<li>list_authors <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_author_posts_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/list_authors" title="zur englischen Doku">en</a></li>
<li>wp_list_authors <a href="http://doku.wordpress-deutschland.org/Template_Tags/p_list_authors" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/wp_list_authors" title="zur englischen Doku">en</a></li>
</ul>
<h4>Kategorie Tags</h4>
<ul>
<li>the_category <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_category" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_category" title="zur englischen Doku">en</a></li>
<li>the_category_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_category_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_category_rss" title="zur englischen Doku">en</a></li>
<li>single_cat_title <a href="http://doku.wordpress-deutschland.org/Template_Tags/single_cat_title" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/single_cat_title" title="zur englischen Doku">en</a></li>
<li>category_description <a href="http://doku.wordpress-deutschland.org/Template_Tags/category_description" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/category_description" title="zur englischen Doku">en</a></li>
<li>dropdown_cats <a href="http://doku.wordpress-deutschland.org/Template_Tags/dropdown_cats" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/dropdown_cats" title="zur englischen Doku">en</a></li>
<li>list_cats <a href="http://doku.wordpress-deutschland.org/Template_Tags/list_cats" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/list_cats" title="zur englischen Doku">en</a></li>
<li>wp_list_cats <a href="http://doku.wordpress-deutschland.org/Template_Tags/wp_list_cats" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/wp_list_cats" title="zur englischen Doku">en</a></li>
<li>in_category <a href="http://doku.wordpress-deutschland.org/Template_Tags/in_category" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/in_category" title="zur englischen Doku">en</a></li>
<li>get_category_parents de | <a href="http://codex.wordpress.org/Template_Tags/get_category_parents" title="zur englischen Doku">en</a></li>
<li>get_the_category de | <a href="http://codex.wordpress.org/Template_Tags/get_the_category" title="zur englischen Doku">en</a></li>
</ul>
<h4>Kommentar Tags</h4>
<ul>
<li>comments_number <a href="http://doku.wordpress-deutschland.org/Template_Tags/comments_number" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comments_number" title="zur englischen Doku">en</a></li>
<li>comments_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/comments_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comments_link" title="zur englischen Doku">en</a></li>
<li>comments_rss_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/comments_rss_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comments_rss_link" title="zur englischen Doku">en</a></li>
<li>comments_popup_script <a href="http://doku.wordpress-deutschland.org/Template_Tags/comments_popup_script" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comments_popup_script" title="zur englischen Doku">en</a></li>
<li>comments_popup_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/comments_popup_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comments_popup_link" title="zur englischen Doku">en</a></li>
<li>comment_ID <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_ID" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_ID" title="zur englischen Doku">en</a></li>
<li>comment_author <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_author" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author" title="zur englischen Doku">en</a></li>
<li>comment_author_IP <a href="http://doku.wordpress-deutschland.org/Template_Tags/" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_IP" title="zur englischen Doku">en</a></li>
<li>comment_author_email <a href="http://doku.wordpress-deutschland.org/Template_Tags/omment_author_IP" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_email" title="zur englischen Doku">en</a></li>
<li>comment_author_url <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_author_url" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_url" title="zur englischen Doku">en</a></li>
<li>comment_author_email_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_email_link" title="zur englischen Doku">en</a></li>
<li>comment_author_url_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_author_email_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_url_link" title="zur englischen Doku">en</a></li>
<li>comment_author_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_author_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_link" title="zur englischen Doku">en</a></li>
<li>comment_type <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_type" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_type" title="zur englischen Doku">en</a></li>
<li>comment_text <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_text" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_text" title="zur englischen Doku">en</a></li>
<li>comment_excerpt <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_excerpt" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_excerpt" title="zur englischen Doku">en</a></li>
<li>comment_date <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_date" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_date" title="zur englischen Doku">en</a></li>
<li>comment_time <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_time" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_time" title="zur englischen Doku">en</a></li>
<li>comment_author_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_author_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_author_rss" title="zur englischen Doku">en</a></li>
<li>comment_text_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_text_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_text_rss" title="zur englischen Doku">en</a></li>
<li>comment_link_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/comment_link_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/comment_link_rss" title="zur englischen Doku">en</a></li>
<li>permalink_comments_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/permalink_comments_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/permalink_comments_rss" title="zur englischen Doku">en</a></li>
</ul>
<h4>Datum und Zeit Tags</h4>
<ul>
<li>the_date_xml de | <a href="http://codex.wordpress.org/Template_Tags/the_date_xml" title="zur englischen Doku">en</a></li>
<li>the_date de | <a href="http://codex.wordpress.org/Template_Tags/the_date" title="zur englischen Doku">en</a></li>
<li>the_time de | <a href="http://codex.wordpress.org/Template_Tags/the_time" title="zur englischen Doku">en</a></li>
<li>get_the_time (1.5*) de | <a href="http://codex.wordpress.org/Template_Tags/get_the_time" title="zur englischen Doku">en</a></li>
<li>single_month_title de | <a href="http://codex.wordpress.org/Template_Tags/single_month_title" title="zur englischen Doku">en</a></li>
</ul>
<h4>Allgemeine Tags</h4>
<ul>
<li>bloginfo <a href="http://doku.wordpress-deutschland.org/Template_Tags/bloginfo" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/bloginfo" title="zur englischen Doku">en</a></li>
<li>bloginfo_rss de | <a href="http://codex.wordpress.org/Template_Tags/bloginfo_rss" title="zur englischen Doku">en</a></li>
<li>get_bloginfo de | <a href="http://codex.wordpress.org/Template_Tags/get_bloginfo" title="zur englischen Doku">en</a></li>
<li>get_bloginfo_rss de | <a href="http://codex.wordpress.org/Template_Tags/get_bloginfo_rss" title="zur englischen Doku">en</a></li>
<li>wp_title <a href="http://doku.wordpress-deutschland.org/Template_Tags/wp_title" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/wp_title" title="zur englischen Doku">en</a></li>
<li>get_archives <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_archives" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_archives" title="zur englischen Doku">en</a></li>
<li>wp_get_archives <a href="http://doku.wordpress-deutschland.org/Template_Tags/wp_get_archives" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/wp_get_archives" title="zur englischen Doku">en</a></li>
<li>get_calendar <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_calendar" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_calendar" title="zur englischen Doku">en</a></li>
<li>get_posts <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_posts" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_posts" title="zur englischen Doku">en</a></li>
<li>wp_list_pages (1.5*) de | <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" title="zur englischen Doku">en</a></li>
<li>wp_loginout (1.5*) de | <a href="http://codex.wordpress.org/Template_Tags/wp_loginout" title="zur englischen Doku">en</a></li>
<li>wp_register (1.5*) de | <a href="http://codex.wordpress.org/Template_Tags/wp_register" title="zur englischen Doku">en</a></li>
<li>query_posts (1.5*) <a href="http://doku.wordpress-deutschland.org/Template_Tags/query_posts" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/query_posts" title="zur englischen Doku">en</a></li>
<li>rss_enclosure (1.5*) de | <a href="http://codex.wordpress.org/Template_Tags/rss_enclosure" title="zur englischen Doku">en</a></li>
</ul>
<h4>GEO Tags</h4>
<p>Diese Tags sind nur mit Hilfe eines Plugins nutzbar - <a href="http://dev.wp-plugins.org/wiki/GeoPlugin">GeoPlugin</a>.<br />
Die Liste und die Dokumentation der zur Verfügung stehenden Tags ist auf der <a href="http://codex.wordpress.org/Template_Tags#Geo_tags">englischen Tagliste "Geo Tags"</a> zu finden.</p>
<h4>Links Tags</h4>
<ul>
<li>edit_post_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/edit_post_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/edit_post_link" title="zur englischen Doku">en</a></li>
<li>edit_comment_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/edit_comment_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/edit_comment_link" title="zur englischen Doku">en</a></li>
<li>link_pages de | <a href="http://codex.wordpress.org/Template_Tags/link_pages" title="zur englischen Doku">en</a></li>
<li>wp_link_pages de | <a href="http://codex.wordpress.org/Template_Tags/wp_link_pages" title="zur englischen Doku">en</a></li>
<li>get_year_link de | <a href="http://codex.wordpress.org/Template_Tags/get_year_link" title="zur englischen Doku">en</a></li>
<li>get_month_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_month_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_month_link" title="zur englischen Doku">en</a></li>
<li>get_day_link <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_day_link" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_day_link" title="zur englischen Doku">en</a></li>
</ul>
<h4>Link Manager Tags</h4>
<ul>
<li>get_links_list de | <a href="http://codex.wordpress.org/Template_Tags/get_links_list" title="zur englischen Doku">en</a></li>
<li>wp_get_links de | <a href="http://codex.wordpress.org/Template_Tags/wp_get_links" title="zur englischen Doku">en</a></li>
<li>get_links de | <a href="http://codex.wordpress.org/Template_Tags/get_links" title="zur englischen Doku">en</a></li>
<li>wp_get_linksbyname de | <a href="http://codex.wordpress.org/Template_Tags/wp_get_linksbyname" title="zur englischen Doku">en</a></li>
<li>get_linksbyname de | <a href="http://codex.wordpress.org/Template_Tags/get_linksbyname" title="zur englischen Doku">en</a></li>
</ul>
<h4>Permalink Tags</h4>
<ul>
<li>permalink_anchor de | <a href="http://codex.wordpress.org/Template_Tags/permalink_anchor" title="zur englischen Doku">en</a></li>
<li>get_permalink <a href="http://doku.wordpress-deutschland.org/Template_Tags/get_permalink" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/get_permalink" title="zur englischen Doku">en</a></li>
<li>the_permalink de | <a href="http://codex.wordpress.org/Template_Tags/the_permalink" title="zur englischen Doku">en</a></li>
<li>permalink_single_rss de | <a href="http://codex.wordpress.org/Template_Tags/permalink_single_rss" title="zur englischen Doku">en</a></li>
</ul>
<h4>Beitrags Tags</h4>
<ul>
<li>the_ID de | <a href="http://codex.wordpress.org/Template_Tags/the_ID" title="zur englischen Doku">en</a></li>
<li>the_title <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_title" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_title" title="zur englischen Doku">en</a></li>
<li>single_post_title <a href="http://doku.wordpress-deutschland.org/Template_Tags/single_post_title" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/single_post_title" title="zur englischen Doku">en</a></li>
<li>the_title_rss <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_title_rss" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_title_rss" title="zur englischen Doku">en</a></li>
<li>the_content <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_content" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_content" title="zur englischen Doku">en</a></li>
<li>the_content_rss de | <a href="http://codex.wordpress.org/Template_Tags/the_content_rss" title="zur englischen Doku">en</a></li>
<li>the_excerpt de | <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" title="zur englischen Doku">en</a></li>
<li>the_excerpt_rss de | <a href="http://codex.wordpress.org/Template_Tags/the_excerpt_rss" title="zur englischen Doku">en</a></li>
<li>previous_post de | <a href="http://codex.wordpress.org/Template_Tags/previous_post" title="zur englischen Doku">en</a></li>
<li>next_post de | <a href="http://codex.wordpress.org/Template_Tags/next_post" title="zur englischen Doku">en</a></li>
<li>posts_nav_link de | <a href="http://codex.wordpress.org/Template_Tags/posts_nav_link" title="zur englischen Doku">en</a></li>
<li>the_meta <a href="http://doku.wordpress-deutschland.org/Template_Tags/the_meta" title="zur deutschen Doku">de</a> | <a href="http://codex.wordpress.org/Template_Tags/the_meta" title="zur englischen Doku">en</a></li>
</ul>
<h4>Trackback Tags</h4>
<ul>
<li>trackback_url de | <a href="http://codex.wordpress.org/Template_Tags/trackback_url" title="zur englischen Doku">en</a></li>
<li>trackback_rdf de | <a href="http://codex.wordpress.org/Template_Tags/trackback_rdf" title="zur englischen Doku">en</a></li>
</ul>
<h3>Weiterführende Links</h3>
<ul>
<li>Template Tags (deutsch) - <a href="http://doku.wordpress-deutschland.org/Template_Tags">doku.wordpress.de/Template_Tags</a></li>
<li>Template Tags (WP Original in Englisch) - <a href="http://codex.wordpress.org/Template_Tags">codex.wordpress.org/Template_Tags</a></li>
<li><a href="http://guff.szub.net/wordpress/template-tags/" >Template Tags Reference mit Anwendungsbeispielen</a></li>
<li><a href="http://solutoire.com/?p=32" >Macromedia Dreamweaver Extension</a></li>
<li>Quelltext der WordPress-DE-Edition - <a href="http://code.wordpress-deutschland.org/xref/nav.htm?index.htm">Code.WordPress.de</a></li>
</ul>
<hr />
<p><img src="http://bueltge.de/favicon.ico" alt="bueltge.de Favicon"/> <small>&copy; <a href="http://bueltge.de/">Frank B&uuml;ltge</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 6e8b33de4342c4f2ca76b245199aeee8)</small></p>
<p><a href="http://bueltge.de/feed/"><img style="border: medium none ; float: left; margin-right: 10px;" src="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" alt="Feed Icon" width="34" height="34" /></a>Danke für das Abonnieren meines <strong><a href="http://bueltge.de/feed/">Feed</a></strong>! Inhalt gefällt? <a href="http://bueltge.de/wunschliste/" title="Wunschliste">Danke sagen</a> &middot; <a href="http://bueltge.de/wp-wordpress-template-tags-uebersicht/147/#writecomment" title="zu den Kommentaren dieses Artikels">Kommentieren</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bueltge.de/wp-wordpress-template-tags-uebersicht/147/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:thumbnail url="http://bueltge.de/wp-content/images/pdf.png" />
		<media:content url="http://bueltge.de/wp-content/images/pdf.png" medium="image">
			<media:title type="html">Download als pdf-Datei</media:title>
		</media:content>
		<media:content url="http://bueltge.de/favicon.ico" medium="image">
			<media:title type="html">bueltge.de Favicon</media:title>
		</media:content>
		<media:content url="http://bueltge.de/wp-content/themes/black_label/images/rss.gif" medium="image">
			<media:title type="html">Feed Icon</media:title>
		</media:content>
	</item>
	</channel>
</rss>

