<?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>VividVisions &#187; WordPress</title>
	<atom:link href="http://www.vividvisions.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vividvisions.com</link>
	<description>information design</description>
	<lastBuildDate>Wed, 19 May 2010 19:42:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>WordPress: Add iframes to your post using custom fields and shortcodes</title>
		<link>http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/</link>
		<comments>http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 23:11:30 +0000</pubDate>
		<dc:creator>Walter</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Main blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[func]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[TinyMCE]]></category>

		<guid isPermaLink="false">http://www.vividvisions.com/?p=525</guid>
		<description><![CDATA[The visual editor of WordPress (TinyMCE) loooves to remove iframes from the content. This can be extremely annoying when you want to add Google Maps or other iframe-based widgets to your post. There are several approaches to a solution: Turn off the visual editor No problem for someone who has a good grasp of HTML. [...]]]></description>
			<content:encoded><![CDATA[<p>The visual editor of WordPress (<a href="http://tinymce.moxiecode.com/">TinyMCE</a>) loooves to remove iframes from the content. This can be extremely annoying when you want to add Google Maps or other iframe-based widgets to your post. There are several approaches to a solution:</p>
<ul>
<li> <strong>Turn off the visual editor</strong><br />
No problem for someone who has a good grasp of HTML. Not quite a solution, more of a workaround.</li>
<li><strong>Edit the TinyMCE configuration files</strong><br />
The required changes are simple but could be lost with the next update of the editor.</li>
<li><strong>Use plugins</strong><br />
I&#8217;m sure, there are tons of WordPress plugins which address  exactly this issue but more plugins also mean more maintenance. Especially, when there is a much simpler solution.</li>
</ul>
<p>Add the following code to the <em>functions.php</em> file of your theme:</p>
<pre><code>function field_func($atts) {
   global $post;
   $name = $atts['name'];
   if (empty($name)) return;

   return get_post_meta($post-&gt;ID, $name, true);
}

add_shortcode('field', 'field_func');</code></pre>
<p>Now you can display the value of a <a href="http://codex.wordpress.org/Using_Custom_Fields">custom field</a> in your post by adding the <a href="http://codex.wordpress.org/Shortcode_API">shortcode </a> <code>[field name=name-of-your-custom-field]</code> to your content at the position where you would like it to be shown. Just make sure that the shortcode stands alone on a line, otherwise WordPress would wrap it in a paragraph, which would result in invalid HTML.</p>
<p>To add an iframe, simply paste the HTML code into the ”value” area of your custom field, like shown here:</p>
<p style="text-align: center;"><img class="size-full wp-image-535 alignnone" title="Wordpress field function" src="http://www.vividvisions.com/wp-content/uploads/2009/02/wordpress-field-function.png" alt="Wordpress field function" width="490" height="559" /></p>
<p>Voilá. Your iframe (or any other HTML code for that matter) will not be removed from your post and you can edit the code without having to switch to the HTML mode.</p>
<p><strong>Update:</strong> You&#8217;ll need at least WordPress 2.5 to be able to use shortcodes.<br />
<h2>Similar posts:</h2>
<ul class="similar-posts">
<li><a href="http://www.vividvisions.com/2008/12/07/dialogue-of-the-week-arianna-huffington-and-jon-stewart/" rel="bookmark" title="07. Dez 08">Dialogue of the Week (Arianna Huffington and Jon Stewart)</a></li>
<li><a href="http://www.vividvisions.com/2008/12/09/my-favourite-iphone-applications-so-far/" rel="bookmark" title="09. Dez 08">My favourite iPhone applications (so far)</a></li>
<li><a href="http://www.vividvisions.com/2008/12/12/creative-commons-icons-as-custom-shapes-for-photoshop/" rel="bookmark" title="12. Dez 08">Creative Commons icons as custom shapes for Photoshop</a></li>
<li><a href="http://www.vividvisions.com/2007/06/18/was-lange-waehrt/" rel="bookmark" title="18. Jun 07">Was lange währt, wird endlich gut!</a></li>
<li><a href="http://www.vividvisions.com/2007/06/20/textmate-cssedit-transmit-subethaedit-coda/" rel="bookmark" title="20. Jun 07">TextMate + CSSEdit + Transmit + SubEthaEdit = Coda?</a></li>
</ul>
<p><!-- Similar Posts took 11.935 ms --></p>
<p><strong><a href="http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/#respond">Comment on this post.</a></strong></p>]]></content:encoded>
			<wfw:commentRss>http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/feed/</wfw:commentRss>
		<slash:comments>78</slash:comments>
		</item>
		<item>
		<title>TagThePress &#8211; das tagthe.net Plugin für WordPress 2.5</title>
		<link>http://www.vividvisions.com/2008/03/31/tagthepress-das-tagthenet-plugin-fuer-wordpress-25/</link>
		<comments>http://www.vividvisions.com/2008/03/31/tagthepress-das-tagthenet-plugin-fuer-wordpress-25/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 22:35:47 +0000</pubDate>
		<dc:creator>Walter</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Helma]]></category>
		<category><![CDATA[Main blog]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[TagThePress]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Fehler]]></category>
		<category><![CDATA[Fixed]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[tagthe]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://www.vividvisions.com/?p=124</guid>
		<description><![CDATA[English: The description of TagThePress moved here. Deutsch: Die Beschreibung von TagThePress befindet sich jetzt hier. Similar posts: Do you speak English? Neue Tricks für einen alten Fuchs Freewave wird internationaler Kompatibilität für den Internet Explorer 8 Was ist Social Media? Comment on this post.]]></description>
			<content:encoded><![CDATA[<p><strong>English:</strong> The description of TagThePress <a href="http://www.vividvisions.com/projects/tagthepress/">moved here</a>.</p>
<p><strong>Deutsch: </strong>Die Beschreibung von TagThePress <a href="http://www.vividvisions.com/projects/tagthepress/">befindet sich jetzt hier</a>.<br />
<h2>Similar posts:</h2>
<ul class="similar-posts">
<li><a href="http://www.vividvisions.com/2008/09/18/do-you-speak-english/" rel="bookmark" title="18. Sep 08">Do you speak English?</a></li>
<li><a href="http://www.vividvisions.com/2008/06/21/neue-tricks-fur-einen-alten-fuchs/" rel="bookmark" title="21. Jun 08">Neue Tricks für einen alten Fuchs</a></li>
<li><a href="http://www.vividvisions.com/2007/08/23/freewave-wird-internationaler/" rel="bookmark" title="23. Aug 07">Freewave wird internationaler</a></li>
<li><a href="http://www.vividvisions.com/2008/01/30/kompatibilitat-fur-den-internet-explorer-8/" rel="bookmark" title="30. Jan 08">Kompatibilität für den Internet Explorer 8</a></li>
<li><a href="http://www.vividvisions.com/2008/06/06/was-ist-social-media/" rel="bookmark" title="06. Jun 08">Was ist Social Media?</a></li>
</ul>
<p><!-- Similar Posts took 5.130 ms --></p>
<p><strong><a href="http://www.vividvisions.com/2008/03/31/tagthepress-das-tagthenet-plugin-fuer-wordpress-25/#respond">Comment on this post.</a></strong></p>]]></content:encoded>
			<wfw:commentRss>http://www.vividvisions.com/2008/03/31/tagthepress-das-tagthenet-plugin-fuer-wordpress-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Was lange währt, wird endlich gut!</title>
		<link>http://www.vividvisions.com/2007/06/18/was-lange-waehrt/</link>
		<comments>http://www.vividvisions.com/2007/06/18/was-lange-waehrt/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 22:09:32 +0000</pubDate>
		<dc:creator>Walter</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Main blog]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[VividVisions]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Agentur]]></category>
		<category><![CDATA[Allgemeine]]></category>
		<category><![CDATA[Antville]]></category>
		<category><![CDATA[Branche]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[Kundenprojekt]]></category>
		<category><![CDATA[Movable]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[Plattform]]></category>
		<category><![CDATA[Serendipity]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://192.168.80.10/~sysop/wordpress/2007/06/18/was-lange-wahrt/</guid>
		<description><![CDATA[Endlich ist sie online, die neue Website! Ich möchte sie als Plattform nutzen, um über die Agentur, Web-Design, Web-Entwicklung und die Branche im Allgemeinen zu schreiben. Umgesetzt wurde sie mit WordPress, das sich als zuverlässiges, robustes und rasch adaptierbares Blogging-Tool erwiesen hat. Getestet hatte ich vorher auch Serendipity, Movable Type und Antville, aber da ich [...]]]></description>
			<content:encoded><![CDATA[<p>Endlich ist sie online, die neue Website! Ich möchte sie als Plattform nutzen, um über die Agentur, Web-Design, Web-Entwicklung und die Branche im Allgemeinen zu schreiben.</p>
<p>Umgesetzt wurde sie mit <a href="http://www.wordpress.org">WordPress</a>, das sich als zuverlässiges, robustes und rasch adaptierbares Blogging-Tool erwiesen hat.<span id="more-49"></span></p>
<p>Getestet hatte ich vorher auch <a href="http://www.s9y.org/">Serendipity</a>, <a href="http://www.movabletype.org/">Movable Type</a> und <a href="http://www.antville.org">Antville</a>, aber da ich gerade ein Kundenprojekt mit WordPress beendet habe und ich schon darin eingearbeitet war, lag die Entscheidung nahe&#8230; Viele meiner Kollegen schwören auf die <a href="http://expressionengine.com/">Expression Engine</a>, die ich eigentlich auch noch testen wollte, aber die Zeit drängte und war zu knapp um noch ein Tool zu evaluieren.</p>
<p>Es gilt sicher noch die eine oder andere Kante auszubügeln, aber ich bin sehr zufrieden mit dem Ergebnis!<br />
<h2>Similar posts:</h2>
<ul class="similar-posts">
<li><a href="http://www.vividvisions.com/2009/04/29/website-check-oevp-at/" rel="bookmark" title="29. Apr 09">Website Check: oevp.at</a></li>
<li><a href="http://www.vividvisions.com/2008/12/08/digitalks07-online-collaboration/" rel="bookmark" title="08. Dez 08">Digitalks07 &#8211; Online Collaboration</a></li>
<li><a href="http://www.vividvisions.com/2008/01/30/kompatibilitat-fur-den-internet-explorer-8/" rel="bookmark" title="30. Jan 08">Kompatibilität für den Internet Explorer 8</a></li>
<li><a href="http://www.vividvisions.com/2009/02/11/wordpress-add-iframes-to-your-post/" rel="bookmark" title="11. Feb 09">WordPress: Add iframes to your post using custom fields and shortcodes</a></li>
<li><a href="http://www.vividvisions.com/2008/05/21/tools-zur-planung-von-web-benutzeroberflaechen/" rel="bookmark" title="21. Mai 08">Tools zur Planung von Web-Benutzeroberflächen</a></li>
</ul>
<p><!-- Similar Posts took 13.165 ms --></p>
<p><strong><a href="http://www.vividvisions.com/2007/06/18/was-lange-waehrt/#respond">Comment on this post.</a></strong></p>]]></content:encoded>
			<wfw:commentRss>http://www.vividvisions.com/2007/06/18/was-lange-waehrt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.vividvisions.com @ 2012-02-05 08:07:02 -->
