<?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>Minneapolis-St Paul Wordpress User Group</title>
	<atom:link href="http://mspwordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mspwordpress.com</link>
	<description>Minneapolis-St Paul Wordpress User Group</description>
	<lastBuildDate>Sun, 29 Apr 2012 14:34:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>MSP WordPress #23 &#8211; April 26, 2012</title>
		<link>http://mspwordpress.com/2012/04/19/msp-wordpress-23-april-26-2012/</link>
		<comments>http://mspwordpress.com/2012/04/19/msp-wordpress-23-april-26-2012/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 18:19:44 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=286</guid>
		<description><![CDATA[Details coming soon! We will be meeting Thursday, April 26, 2012 at the Nerdery for our 21st MSP WordPress gathering!  Show up at 6:30 for mingling and pizza and pop. 6:30 &#8211; 7 p.m. Pizza and Pop (courtesy of The Nerdery) 7 &#8211; 7:15 p.m. Greetings 7:15 – 9 p.m. TBD See you at The [...]]]></description>
			<content:encoded><![CDATA[<p>Details coming soon!</p>
<p>We will be meeting Thursday, April 26, 2012 at the Nerdery for our 21st MSP WordPress gathering!  Show up at 6:30 for mingling and pizza and pop.</p>
<div>6:30 &#8211; 7 p.m. Pizza and Pop (courtesy of The Nerdery)<br />
7 &#8211; 7:15 p.m. Greetings</div>
<div>7:15 – 9 p.m. TBD</div>
<div>See you at The Nerdery on Thursday!  Bring your friends!  Pizza and Pop!</div>
<div><strong>What</strong>: Minneapolis-St. Paul WordPress User Group Meeting</div>
<div>
<p><strong>When</strong>: Thursday, April 26, 2012 at 7 p.m. (Doors and pizza at 6:30)<br />
<strong>Session</strong> <strong>Topic</strong>: TBD<br />
<strong>Where</strong>: The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
<strong>Cost</strong>: Free! (Please bring a friend!)</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2012/04/19/msp-wordpress-23-april-26-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #21 Plugin Intro Summary</title>
		<link>http://mspwordpress.com/2012/02/25/msp-wordpress-21-plugin-intro-summary/</link>
		<comments>http://mspwordpress.com/2012/02/25/msp-wordpress-21-plugin-intro-summary/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 21:00:28 +0000</pubDate>
		<dc:creator>Josh Leuze</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=270</guid>
		<description><![CDATA[Here is an overview of my session on building and translating plugins at last night&#8217;s meeting with lots of links to dig in deeper if you&#8217;re interested. Plugins In Your Theme If you customize the functions.php file of your themes, you&#8217;re already building plugins! Many tutorials will advise you to take a snippet of code and [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an overview of my session on building and translating plugins at <a href="http://mspwordpress.com/2012/02/22/msp-wordpress-21/">last night&#8217;s meeting</a> with lots of links to dig in deeper if you&#8217;re interested.</p>
<h3>Plugins In Your Theme</h3>
<p>If you customize the functions.php file of your themes, you&#8217;re already building plugins! Many tutorials will advise you to take a snippet of code and paste it into your theme&#8217;s functions.php, this isn&#8217;t really any different than making a plugin, and often times, this code <em>should</em> be a separate plugin.</p>
<p>It&#8217;s all too common for themes to try to substitute for plugins and add custom post types, taxonomies, or shortcodes to a site, but what happens when you switch themes? That content disappears.</p>
<p><span id="more-270"></span></p>
<h3>What&#8217;s a theme? What&#8217;s a plugin?</h3>
<p>A plugin could change the design of a site as easily as a theme, and any plugin could be crammed into a theme. But really a theme should only be managing the presentation of a site&#8217;s content, any new types of content or functionality should be enabled using plugins.</p>
<h3>What should be in the theme&#8217;s functions.php?</h3>
<p>Code to enable built-in WordPress functionality, like custom backgrounds and post thumbnails, sidebar registration, or a theme options page. This would be a good place to customize excerpts or enqueue scripts that are needed by the theme.</p>
<p><em>Don&#8217;t ever edit an existing theme</em>, if you edit a theme in the official directory like Twenty Eleven and then update that theme, you will lose your changes. Instead fork the theme by changing the name to make it unique, or <a href="http://codex.wordpress.org/Child_Themes">create a child theme</a> for it so that you can safely update the parent theme.</p>
<h3>What should be in a plugin?</h3>
<p>Any functionality that you want to keep around regardless of which theme you are using. Some themes might not support the custom post types and taxonomies you are using without extra templates or styling, but that content should never disappear from the admin, and if you use a plugin it won&#8217;t!</p>
<p>Another thing to consider is how modular the functionality is, if you find yourself adding the same widget to themes again and again, it&#8217;s a great candidate for a plugin!</p>
<h3>Site specific plugins</h3>
<p>One good way to transition from using the function.php file to building plugins is <a href="https://gist.github.com/1904421">a site specific plugin</a> that acts as a standalone functions file you can use to add functionality specific to that site like a custom taxonomy for blog posts.</p>
<p>There&#8217;s <a href="http://wpcandy.com/teaches/how-to-create-a-functionality-plugin">a great post on WPCandy</a> which explains why you might want a functionality plugin and how to build one.</p>
<h3>General purpose plugins</h3>
<p>A good place to start learning how to actually make a plugin is the codex article on <a href="http://codex.wordpress.org/Writing_a_Plugin">writing a plugin</a>. It can be a bit overwhelming at first, but don&#8217;t get discouraged. <a href="https://gist.github.com/1904267">A polished plugin</a> you release to the world might have some extra information and comments, but <a href="https://gist.github.com/1903613">a simple plugin</a> for your own use could be just a few lines.</p>
<p>I&#8217;d suggest <a href="http://wordpress.tv/tag/plugins/">watching some videos</a> on building basic plugins. After watching a few and learning how different people are making them the learning curve won&#8217;t feel so steep!</p>
<p>When you start building plugins, you&#8217;ll start running into a few things that don&#8217;t come up very often in theme development, like hooks, actions, filters. Learning how these are used <a href="http://codex.wordpress.org/Plugin_API">in the plugin API</a> is essential and will save you a lot of headaches!</p>
<p>Another important detail is to <a href="http://nacin.com/2010/05/11/in-wordpress-prefix-everything/">prefix everything</a>. You want to make sure that the functions, variables, the rest of the code you write is uniquely named so that it doesn&#8217;t conflict with code in WordPress, your theme, or other plugins. It also doesn&#8217;t hurt to clearly name everything so that you know what it is for, after all, this isn&#8217;t Twitter, there&#8217;s no character limit!</p>
<h3>Translating your plugin</h3>
<p>Supporting translations of your plugin is a good way to improve the usability for non-English speakers and build an international audience for your plugin. The documentation has <a href="http://codex.wordpress.org/I18n_for_WordPress_Developers">plenty of information</a> on this topic, but it&#8217;s not the most user friendly introduction, try <a href="http://urbangiraffe.com/articles/localizing-wordpress-themes-and-plugins/">using this tutorial</a> instead.</p>
<p>Basically any text you want to translate needs to be wrapped in a function, the two most common ones are &#8220;__&#8221; and &#8220;_e&#8221;. Use the &#8220;__&#8221; function for returning text to be used in PHP, and the &#8220;_e&#8221; function for echoing text to output in HTML. In <a href="https://gist.github.com/1904421">the example I showed</a> the strings being translated were labels for a taxonomy, so it was all being returned rather than echoed.</p>
<p>Notice that in the example the functions contain not just the string to be translated, but also the <a href="http://codex.wordpress.org/I18n_for_WordPress_Developers#I18n_for_theme_and_plugin_developers">basename of the plugin</a>. This tells WordPress that the translation files for that string is located in that particular plugin after you have <a href="http://codex.wordpress.org/I18n_for_WordPress_Developers#Choosing_and_loading_a_domain">loaded that basename as the plugin domain</a>. Just remember, <a href="http://markjaquith.wordpress.com/2011/10/06/translating-wordpress-plugins-and-themes-dont-get-clever/">don&#8217;t get clever</a> when adding the basename. The PHP files need to be parsed by GNU gettext to generate the translation file, so don&#8217;t try to take shortcuts with variables.</p>
<p>You could download <a href="http://www.gnu.org/software/gettext/">GNU gettext</a> and try to generate a translation file on your own, but there are some easier options. If your plugin is in the repository you can generate this file <a href="http://codex.wordpress.org/I18n_for_WordPress_Developers#Generating_a_POT_file">right from the plugin admin</a>. If the plugin isn&#8217;t in the repository, you can <a href="http://codex.wordpress.org/I18n_for_WordPress_Developers#Generating_a_POT_file">checkout the tools</a> from SVN or <a href="http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/">use poEdit</a> to generate this file.</p>
<p>Once your plugin is ready for translation, I recommend making it easy for translators to find the translation files and get their translation back to you. I have <a href="http://www.jleuze.com/plugins/meteor-slides/languages/">a languages page</a> in the documentation of my plugin with translator credits and info for new translators.</p>
<h3>Learn!</h3>
<p>I forgot to mention my favorite WordPress book during the meeting, <a href="http://justintadlock.com/plugindevbook">Professional WordPress Plugin Development</a>. The first couple of chapters really help build a good foundation for starting a plugin. The rest of the book goes deep into different details of plugin development and I have found it handy to reference specific chapters as I need them.</p>
<p>If you have any questions, leave a comment and I&#8217;ll try to point you in the right direction. Now get coding, I&#8217;m looking forward to seeing the <a href="http://mspwordpress.com/msp-wordpress-plugins/">member plugins</a> list grow!</p>
<h5>A couple of snapshots from the meeting</h5>

<a href='http://mspwordpress.com/2012/02/25/msp-wordpress-21-plugin-intro-summary/josh1000/' title='Josh Leuze'><img width="150" height="150" src="http://mspwordpress.com/wp-content/uploads/2012/02/josh1000-150x150.jpg" class="attachment-thumbnail" alt="Josh Leuze" title="Josh Leuze" /></a>
<a href='http://mspwordpress.com/2012/02/25/msp-wordpress-21-plugin-intro-summary/justin/' title='Justin Foell'><img width="150" height="150" src="http://mspwordpress.com/wp-content/uploads/2012/02/justin-150x150.jpg" class="attachment-thumbnail" alt="Justin Foell" title="Justin Foell" /></a>

]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2012/02/25/msp-wordpress-21-plugin-intro-summary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #21</title>
		<link>http://mspwordpress.com/2012/02/22/msp-wordpress-21/</link>
		<comments>http://mspwordpress.com/2012/02/22/msp-wordpress-21/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 02:46:14 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=251</guid>
		<description><![CDATA[We will be meeting tomorrow (2/23) at the Nerdery for our 21st MSP WordPress gathering!  Show up at 6:30 for mingling and pizza and pop. 6:30 &#8211; 7 p.m. Pizza and Pop (courtesy of The Nerdery) 7 &#8211; 7:15 p.m. Greetings 7:15 – 8:15 p.m. My first plugin + plugin internationalization (Josh Leutze) 8:15 &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>We will be meeting tomorrow (2/23) at the Nerdery for our 21st MSP WordPress gathering!  Show up at 6:30 for mingling and pizza and pop.</p>
<div>6:30 &#8211; 7 p.m. Pizza and Pop (courtesy of The Nerdery)<br />
7 &#8211; 7:15 p.m. Greetings</div>
<div>7:15 – 8:15 p.m. My first plugin + plugin internationalization (Josh Leutze)</div>
<div>8:15 &#8211; 8:40 p.m. Show &amp; Tell</div>
<div>8:40 – 9 p.m. Discussion + Nerdery Overnight Website Challenge</div>
<div>See you at The Nerdery on Thursday!  Bring your friends!  Pizza and Pop!</div>
<div><strong>What</strong>: Minneapolis-St. Paul WordPress User Group Meeting</div>
<div>
<p><strong>When</strong>: Thursday, February 23, 2012 at 7 p.m. (Doors and pizza at 6:30)<br />
<strong>Session</strong> <strong>Topic</strong>: Beginner plugin development + plugin internationalization<br />
<strong>Where</strong>: The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
<strong>Cost</strong>: Free! (Please bring a friend!)</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2012/02/22/msp-wordpress-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summary from MSP WordPress #20</title>
		<link>http://mspwordpress.com/2012/02/01/summary-from-msp-wordpress-20/</link>
		<comments>http://mspwordpress.com/2012/02/01/summary-from-msp-wordpress-20/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 02:36:13 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=243</guid>
		<description><![CDATA[Last night at the WordPress meeting we had the Coda / Aptana Studio &#8220;face off&#8221;. Here are a few notes I took about the products during the demos. Hope they help. Coda 1.7.5 &#8211; Demo by Tom Penney http://panic.com/coda/ $99 for Mac OS only * Subversion integration for version control. Git in the next version. [...]]]></description>
			<content:encoded><![CDATA[<p>Last night at the WordPress meeting we had the Coda / Aptana Studio &#8220;face off&#8221;. Here are a few notes I took about the products during the demos. Hope they help.</p>
<p><strong>Coda 1.7.5 &#8211; Demo by Tom Penney</strong><br />
<a href="http://panic.com/coda/">http://panic.com/coda/</a><br />
$99 for Mac OS only<br />
* Subversion integration for version control. Git in the next version.<br />
* &#8220;Everything you need in one window&#8221;<br />
* Neat feature: Invite other Coda users to collaboratively edit files.<br />
* Only works with Safari webkit browser in the one window.</p>
<p>There is a WordPress plug-in available&#8230;<br />
<a href="http://hitchhackerguide.com/2011/02/18/wordpress-syntax-mode-for-panic-coda/">http://hitchhackerguide.com/2011/02/18/wordpress-syntax-mode-for-panic-coda/</a><br />
1. Download the packed mode file and unpack it.<br />
2. Copy the PHP-HTML-WP.mode the Coda Modes folder. ~/Library/Application Support/Coda/Modes/<br />
3. Open a WordPress or PHP file and load the syntax mode in Coda by visiting Text -> Syntax Mode -> PHP-HTML-WP in the toolbar.<br />
4. Optional: To make this mode the default visit the Editor pane in the Preferences window and select the ‘PHP-HTML-WP’ mode as default file type</p>
<p><strong>Aptana Studio 3 &#8211; Demo by John Havlik</strong><br />
<a href="http://aptana.com/">http://aptana.com/</a><br />
* FREE, Open Source IDE based on Eclipse for Mac or Windows<br />
* Git integration for version control  githubfirst<br />
* More web focused than Eclipse. Built for Javascript, CSS, php, and html.<br />
* Plugins available for jQuery, WordPress, and CSS tool tips.</p>
<p><strong>Guest Author:</strong><br />
Tim Cimbura, <a href="http://www.cimbura.com">www.cimbura.com</a><br />
Helping businesses become more effective, productive, and profitable through custom iPad/iPhone applications, FileMaker app solutions, and web site design.</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2012/02/01/summary-from-msp-wordpress-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #20 This Thursday: Havlik v. Penney, an IDE Face-Off</title>
		<link>http://mspwordpress.com/2012/01/24/msp-wordpress-20-this-thursday-havlik-v-penney-an-ide-face-off/</link>
		<comments>http://mspwordpress.com/2012/01/24/msp-wordpress-20-this-thursday-havlik-v-penney-an-ide-face-off/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 03:42:59 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=235</guid>
		<description><![CDATA[Back by popular demand this Thursday, Jan. 26 at 7 p.m. is MSP WordPress!  (many props to John Havlik for driving the agenda) There has been a lot of discussion on the group recently about what software and workflows WordPress pros are using to build sites these days. Two of our pros-in-residence, John Havlik and [...]]]></description>
			<content:encoded><![CDATA[<p>Back by popular demand this Thursday, Jan. 26 at 7 p.m. is MSP WordPress!  (many props to John Havlik for driving the agenda)</p>
<p>There has been a lot of discussion on the group recently about what software and workflows WordPress pros are using to build sites these days.</p>
<p>Two of our pros-in-residence, John Havlik and Tom Penney, will show us how they use <a href="http://panic.com/coda/">Coda</a> and <a href="http://www.aptana.com/">Aptana</a>, respectively to rock their workflow.  &#8230;And I&#8217;ll just address the elephant in the room right now &#8211; Doesn&#8217;t anyone use Dreamweaver anymore???  ;)</p>
<p>We will also continue our discussion on Trackbacks &amp; Pingbacks and close out the evening with an info-session about the Overnight Website Challenge.</p>
<div>7:15 &#8211; 8 p.m. John Havlik and Tom Penney face off!  Aptana vs. Coda</div>
<div>8:10 &#8211; 8:30 p.m. Trackbacks vs. Pingbacks for the win!</div>
<div>8:30 &#8211; 9 p.m. Nerdery Overnight Website Challenge</div>
<div>See you at The Nerdery on Thursday!  Bring your friends!  Pizza and Pop!</div>
<div><strong>What</strong>: Minneapolis-St. Paul WordPress User Group Meeting</div>
<div>
<p><strong>When</strong>: Thursday, January 26, 2012 at 7 p.m. (Doors and pizza at 6:30)<br />
<strong>Session</strong> <strong>Topic</strong>: WordPress workflows, Trackbacks &amp; Pingbacks, Overnight Website Challenge<br />
<strong>Where</strong>: The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
<strong>Cost</strong>: Free! (Please bring a friend!)</p>
<p>See you on Thursday!</p>
<p>Toby</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2012/01/24/msp-wordpress-20-this-thursday-havlik-v-penney-an-ide-face-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #19 Tomorrow (Thursday)!  WordPress Multi-Site Show-and-Tell</title>
		<link>http://mspwordpress.com/2011/10/26/msp-wordpress-19-tomorrow-thursday/</link>
		<comments>http://mspwordpress.com/2011/10/26/msp-wordpress-19-tomorrow-thursday/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 12:31:39 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=224</guid>
		<description><![CDATA[One night only!  Tomorrow, Thursday, Oct. 27, we will be showcasing and discussing the features of WordPress multi-site.  We will be sharing examples of live multi-site websites as well as different ways to utilize multi-site. We will follow that up with a Tech Shoppe and a discussion of our soon-to-be announced (and planned) WINTER EXTRAVAGANZA!!! [...]]]></description>
			<content:encoded><![CDATA[<p>One night only!  Tomorrow, Thursday, Oct. 27, we will be showcasing and discussing the features of WordPress multi-site.  We will be sharing examples of live multi-site websites as well as different ways to utilize multi-site.</p>
<p>We will follow that up with a Tech Shoppe and a discussion of our soon-to-be announced (and planned) WINTER EXTRAVAGANZA!!!</p>
<p><strong>What</strong>: Minneapolis-St. Paul WordPress User Group Meeting<br />
<strong>When</strong>: Thursday, September 21, 2011 at 7 p.m. (Doors and pizza at 6:30)<br />
<strong>Session</strong> <strong>Topic</strong>: WordPress Multi-Site, Tech Shoppe, Winter Event Discussion<br />
<strong>Where</strong>: The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
<strong>Cost</strong>: Free! (Please bring a friend!)</p>
<p>See you tomorrow!<br />
Toby</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2011/10/26/msp-wordpress-19-tomorrow-thursday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #18 Tomorrow (Thursday)!  SEO and Fun With Plugins</title>
		<link>http://mspwordpress.com/2011/09/21/msp-wordpress-18-tomorrow-thursday-seo-and-fun-with-plugins/</link>
		<comments>http://mspwordpress.com/2011/09/21/msp-wordpress-18-tomorrow-thursday-seo-and-fun-with-plugins/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 23:11:59 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=195</guid>
		<description><![CDATA[Tomorrow&#8217;s MSP WordPress gathering will feature local SEO guru, Dave Allen. He will be giving us an update on the current state of SEO. Is paid search better than SEO? How has Facebook changed the search game? Come and find out! We will follow up Dave&#8217;s session with a roundtable on fun and useful plugins [...]]]></description>
			<content:encoded><![CDATA[<p>Tomorrow&#8217;s MSP WordPress gathering will feature local SEO guru, Dave Allen. He will be giving us an update on the current state of SEO. Is paid search better than SEO? How has Facebook changed the search game? Come and find out!</p>
<p>We will follow up Dave&#8217;s session with a roundtable on fun and useful plugins we all use (thanks, Susie!).</p>
<p>Finally, we will have a short organizing meeting for the yet-to-be-named local WordPress event this winter. Who knows, maybe we will call it &#8220;WordCamp&#8221;. <img src='http://mspwordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>What</strong>: Minneapolis-St. Paul WordPress User Group Meeting<br />
<strong>When</strong>: Thursday, September 21, 2011 at 7 p.m. (Doors and pizza at 6:30)<br />
<strong>Session</strong> <strong>Topic</strong>: The Current State of SEO; Fun with Plugins<br />
<strong>Where</strong>: The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
<strong>Cost</strong>: Free! (Please bring a friend!)</p>
<p>See you tomorrow!<br />
Toby</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2011/09/21/msp-wordpress-18-tomorrow-thursday-seo-and-fun-with-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #17 Tomorrow! State of the Word</title>
		<link>http://mspwordpress.com/2011/08/24/msp-wordpress-17-tomorrow-state-of-the-word/</link>
		<comments>http://mspwordpress.com/2011/08/24/msp-wordpress-17-tomorrow-state-of-the-word/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 14:41:21 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=184</guid>
		<description><![CDATA[Greetings! We will be holding our 17th WordPress gathering tomorrow night at The Nerdery. The first part of the show will be Matt Mullenweg&#8217;s &#8220;State of the Word&#8221; address from WordCamp San Francisco.  We will follow that up with a discussion about the current state of the WordPress community locally as well where you think [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings!</p>
<p>We will be holding our 17th WordPress gathering tomorrow night at The Nerdery.</p>
<p>The first part of the show will be Matt Mullenweg&#8217;s &#8220;State of the Word&#8221; address from WordCamp San Francisco.  We will follow that up with a discussion about the current state of the WordPress community locally as well where you think WordPress is heading.</p>
<p>What else is on your mind?</p>
<p>What: Minneapolis-St. Paul WordPress User Group Meeting<br />
When: Thursday, August 25, 2011 at 7 p.m. (Doors and pizza at 6:30)<br />
Session Topic: 2011 &#8220;State of the Word&#8221; Address<br />
Where:  The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
Cost: Free! (Please bring a friend!)</p>
<p>See you tomorrow!<br />
Toby</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2011/08/24/msp-wordpress-17-tomorrow-state-of-the-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSP WordPress #15 Date Change</title>
		<link>http://mspwordpress.com/2011/06/23/msp-wordpress-15-date-change/</link>
		<comments>http://mspwordpress.com/2011/06/23/msp-wordpress-15-date-change/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 12:34:59 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=178</guid>
		<description><![CDATA[Due to a scheduling conflict, MSP WordPress #15 has been moved to Wednesday June 29, 2011. Click here to see the agenda.]]></description>
			<content:encoded><![CDATA[<p>Due to a scheduling conflict, MSP WordPress #15 has been moved to <strong>Wednesday June 29, 2011</strong>.</p>
<p><a href="http://mspwordpress.com/2011/06/21/wordpress-security-msp-wordpress-15-on-thursday-june-22-2011/">Click here to see the agenda</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2011/06/23/msp-wordpress-15-date-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Security! MSP WordPress #15 on Wednesday June 29, 2011</title>
		<link>http://mspwordpress.com/2011/06/21/wordpress-security-msp-wordpress-15-on-thursday-june-22-2011/</link>
		<comments>http://mspwordpress.com/2011/06/21/wordpress-security-msp-wordpress-15-on-thursday-june-22-2011/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 21:36:51 +0000</pubDate>
		<dc:creator>Toby Cryns</dc:creator>
				<category><![CDATA[Meeting Agendas]]></category>

		<guid isPermaLink="false">http://mspwordpress.com/?p=173</guid>
		<description><![CDATA[MSP WordPress is this Thursday next Wednesday June 29, 2011! We will have a roundtable discussion about web and WordPress security precautions and then follow that up with a Security Tech Shop where we can all work on implementing some of those things on our sites. &#160; Then we will do a quick show-and-tell at the end. [...]]]></description>
			<content:encoded><![CDATA[<div id="inbdy">MSP WordPress is <del>this Thursday</del> next Wednesday June 29, 2011!</div>
<div>We will have a roundtable discussion about web and WordPress security precautions and then follow that up with a<br />
Security Tech Shop where we can all work on implementing some of those things on our sites.</div>
<div id="inbdy">
<p>&nbsp;</p>
<p>Then we will do a quick show-and-tell at the end.  Please email me off-list if you want to reserve a spot on the show-and-tell docket.</p>
<p>See you <del>Thursday June 22, 2011</del> <strong>Wednesday June 29, 2011</strong>!</p>
<p>What: Minneapolis-St. Paul WordPress User Group Meeting<br />
Session Topic: WordPress Security<br />
Where:  The Nerdery, 9555 James Ave S Suite 245 Bloomington, MN 55431<br />
Cost: Free! (Please bring a friend!)</p>
<p>Toby</p>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mspwordpress.com/2011/06/21/wordpress-security-msp-wordpress-15-on-thursday-june-22-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

