<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: WordPress &#8211; Shortcodes erstellen</title>
	<atom:link href="http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/feed" rel="self" type="application/rss+xml" />
	<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64</link>
	<description>Code Schnipsel (Snippets) zu Wordpress, PHP, HTML, CSS, jQuery</description>
	<lastBuildDate>Mon, 05 Dec 2011 22:32:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Schaeumer</title>
		<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/comment-page-1#comment-3471</link>
		<dc:creator>Schaeumer</dc:creator>
		<pubDate>Thu, 24 Nov 2011 21:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=64#comment-3471</guid>
		<description>Feine Sache solche Shortcodes. Ich achte bei neuen Themes eigentlich immer darauf, das hier auch gute Shortcodes mit dabei sind, aber manchmal reichen diese nicht, bzw. sind nicht das was man m&#246;chte. Dann kann man es ja immer noch wie oben beschrieben machen.
Danke f&#252;r die Tipps</description>
		<content:encoded><![CDATA[<p>Feine Sache solche Shortcodes. Ich achte bei neuen Themes eigentlich immer darauf, das hier auch gute Shortcodes mit dabei sind, aber manchmal reichen diese nicht, bzw. sind nicht das was man m&#246;chte. Dann kann man es ja immer noch wie oben beschrieben machen.<br />
Danke f&#252;r die Tipps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/comment-page-1#comment-1480</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Mon, 20 Sep 2010 08:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=64#comment-1480</guid>
		<description>Habe ich eine Chance eine Shortcode mit einem anderen Shortcode auszugeben.

Zum Beispiel:

&lt;pre lang=&quot;php&quot; line=&quot;1&quot;&gt; function newshortcode() { &lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;2&quot;&gt; return &#039;Test &lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;3&quot;&gt; [googleMap]550&#124;200&#124;16&#124;1&#124;1&#124;51.840831,6.696674&#124;Testbeschreibung[/googleMap]&#039;; &lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;4&quot;&gt; } &lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;5&quot;&gt; add_shortcode(&#039;map1&#039;, &#039;testmap&#039;) &lt;/pre&gt;

Habe ich da eine Chance das umzusetzten?
Zur Zeit wird halt einfach nur [googleMap]550&#124;200&#124;16&#124;1&#124;1&#124;51.840831,6.696674&#124;Testbeschreibung[/googleMap] im Artikel oder der Seite ausgegeben, aber leider keine Map gebildet.

Hoffe mir kann jemand helfen. Bedanke mich schonmal im Vorraus.</description>
		<content:encoded><![CDATA[<p>Habe ich eine Chance eine Shortcode mit einem anderen Shortcode auszugeben.</p>
<p>Zum Beispiel:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #000000; font-weight: bold;">function</span> newshortcode<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'Test</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #009900;">&#91;</span>googleMap<span style="color: #009900;">&#93;</span><span style="color: #cc66cc;">550</span><span style="color: #339933;">|</span><span style="color: #cc66cc;">200</span><span style="color: #339933;">|</span><span style="color: #cc66cc;">16</span><span style="color: #339933;">|</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">|</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">|</span><span style="color:#800080;">51.840831</span><span style="color: #339933;">,</span><span style="color:#800080;">6.696674</span><span style="color: #339933;">|</span>Testbeschreibung<span style="color: #009900;">&#91;</span><span style="color: #339933;">/</span>googleMap<span style="color: #009900;">&#93;</span><span style="color: #0000ff;">';</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"> add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'map1'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'testmap'</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p>Habe ich da eine Chance das umzusetzten?<br />
Zur Zeit wird halt einfach nur [googleMap]550|200|16|1|1|51.840831,6.696674|Testbeschreibung[/googleMap] im Artikel oder der Seite ausgegeben, aber leider keine Map gebildet.</p>
<p>Hoffe mir kann jemand helfen. Bedanke mich schonmal im Vorraus.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Graf</title>
		<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/comment-page-1#comment-1299</link>
		<dc:creator>Stefan Graf</dc:creator>
		<pubDate>Thu, 17 Jun 2010 11:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=64#comment-1299</guid>
		<description>Da ich mich erst jetzt mit WP besch&#228;ftige, bin ich auch erst jetzt auf Deinen Eintrag hier gestossen. Ich entwickle derzeit noch unter ExpressionEngine und dort gab es schon immer solch eine Funktion (Variablen). Das ist furchtbar elegant und der Template-Code bleibt sauber!

Nur w&#252;rde mich zus&#228;tzlich die Integration im Template seitens WP interessieren.

Stefan</description>
		<content:encoded><![CDATA[<p>Da ich mich erst jetzt mit WP besch&#228;ftige, bin ich auch erst jetzt auf Deinen Eintrag hier gestossen. Ich entwickle derzeit noch unter ExpressionEngine und dort gab es schon immer solch eine Funktion (Variablen). Das ist furchtbar elegant und der Template-Code bleibt sauber!</p>
<p>Nur w&#252;rde mich zus&#228;tzlich die Integration im Template seitens WP interessieren.</p>
<p>Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Hellmann</title>
		<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/comment-page-1#comment-87</link>
		<dc:creator>David Hellmann</dc:creator>
		<pubDate>Tue, 30 Jun 2009 07:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=64#comment-87</guid>
		<description>Super, danke. Eigentlich sehr m&#228;chtig das ganze und sehr Zeitersparend bei der ein oder anderen Sache :)</description>
		<content:encoded><![CDATA[<p>Super, danke. Eigentlich sehr m&#228;chtig das ganze und sehr Zeitersparend bei der ein oder anderen Sache :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Markus</title>
		<link>http://schnipsel.davidhellmann.com/wordpress/wordpress-shortcodes-erstellen/64/comment-page-1#comment-86</link>
		<dc:creator>Markus</dc:creator>
		<pubDate>Tue, 30 Jun 2009 07:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/?p=64#comment-86</guid>
		<description>Hier noch ein paar Beispiele was man alles mit Shortcodes machen kann.

http://blue-anvil.com/archives/8-fun-useful-shortcode-functions-for-wordpress

http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/

gruss</description>
		<content:encoded><![CDATA[<p>Hier noch ein paar Beispiele was man alles mit Shortcodes machen kann.</p>
<p><a href="http://blue-anvil.com/archives/8-fun-useful-shortcode-functions-for-wordpress" rel="nofollow">http://blue-anvil.com/archives/8-fun-useful-shortcode-functions-for-wordpress</a></p>
<p><a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/" rel="nofollow">http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/</a></p>
<p>gruss</p>
]]></content:encoded>
	</item>
</channel>
</rss>

