<?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>SDAC Inc &#124; Chicagoland Web Development &#187; SDAC Blog</title> <atom:link href="http://www.sandboxdev.com/category/blog/feed/" rel="self" type="application/rss+xml" /><link>http://www.sandboxdev.com</link> <description>Just another Sandbox Development and Consulting Inc. Sites site</description> <lastBuildDate>Wed, 25 Jan 2012 07:57:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>HOWTO: Show Page Template Name</title><link>http://www.sandboxdev.com/2011/11/28/howto-show-page-template-name/</link> <comments>http://www.sandboxdev.com/2011/11/28/howto-show-page-template-name/#comments</comments> <pubDate>Mon, 28 Nov 2011 20:49:54 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Themes]]></category> <category><![CDATA[WordPress Troubleshooting]]></category> <category><![CDATA[get_page_template]]></category> <category><![CDATA[WordPress function]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7350</guid> <description><![CDATA[A cool function to simply display the path of the WordPress template used on a particular page: How/when to use this? If you are trying to debug a site and want to quickly see what page template is used &#8211; you can put that PHP code into footer.php and it will then echo out the [...]]]></description> <content:encoded><![CDATA[<p>A cool function to simply display the path of the WordPress template used on a particular page:</p><pre class="brush: php; title: Custom Code; notranslate">
&lt;?php echo get_page_template() ?&gt;
</pre><p><strong>How/when to use this?</strong><br
/> If you are trying to debug a site and want to quickly see what page template is used &#8211; you can put that PHP code into footer.php and it will then echo out the path so you can quickly and easily see what template is being used.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/11/28/howto-show-page-template-name/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>HOWTO: Make WordPress Titles Title Case</title><link>http://www.sandboxdev.com/2011/11/18/howto-make-wordpress-titles-title-case/</link> <comments>http://www.sandboxdev.com/2011/11/18/howto-make-wordpress-titles-title-case/#comments</comments> <pubDate>Fri, 18 Nov 2011 21:23:13 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[the_title]]></category> <category><![CDATA[wp_title]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7345</guid> <description><![CDATA[Ever need to make sure all your titles showed up with using &#8220;Title Case&#8221; and not just by using CSS? By adding the following to your functions.php file in your theme &#8211; you can ensure the post title will have the case you want:]]></description> <content:encoded><![CDATA[<p>Ever need to make sure all your titles showed up with using &#8220;Title Case&#8221; and not just by using CSS? By adding the following to your functions.php file in your theme &#8211; you can ensure the post title will have the case you want:</p><pre class="brush: php; title: Custom Code; notranslate">
/**
 * Custom Title Case for the_title()
 * @returns $content (title with title case)
 */
add_filter( 'the_title', 'sdac_use_title_case' );
add_filter( 'wp_title', 'sdac_use_title_case' );
function sdac_use_title_case( $content ) {
	$content = ucwords( $content );
	return $content;
}
</pre> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/11/18/howto-make-wordpress-titles-title-case/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Change WordPress Author Permalink</title><link>http://www.sandboxdev.com/2011/10/19/change-wordpress-author-permalink/</link> <comments>http://www.sandboxdev.com/2011/10/19/change-wordpress-author-permalink/#comments</comments> <pubDate>Wed, 19 Oct 2011 16:12:55 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[init]]></category> <category><![CDATA[wp_rewrite]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7326</guid> <description><![CDATA[Ever want to change the &#8220;author&#8221; permalink from something like /author/jzelazny to something more custom for your CMS like /teacher/jzelazny? This is relatively easy by adding a function to your functions.php file: Flush your permalinks (Settings > Permalinks) and now all your /author/ pages will now be /teacher/.]]></description> <content:encoded><![CDATA[<p>Ever want to change the &#8220;author&#8221; permalink from something like /author/jzelazny to something more custom for your CMS like /teacher/jzelazny?  This is relatively easy by adding a function to your functions.php file:</p><pre class="brush: php; title: Custom Code; notranslate">
// Adjust your author permalink
add_action( 'init', 'custom_theme_init' );
function custom_theme_init() {
   global $wp_rewrite;
   // Change the value of the author permalink to teacher
   $wp_rewrite-&gt;author_base = 'teacher';
}
</pre><p>Flush your permalinks (Settings > Permalinks) and now all your /author/ pages will now be /teacher/.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/10/19/change-wordpress-author-permalink/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Create Anti-Spam Email Address in WordPress</title><link>http://www.sandboxdev.com/2011/10/12/create-anti-spam-email-address-in-wordpress/</link> <comments>http://www.sandboxdev.com/2011/10/12/create-anti-spam-email-address-in-wordpress/#comments</comments> <pubDate>Wed, 12 Oct 2011 15:14:59 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[spam]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7302</guid> <description><![CDATA[I recently found a gem in the WordPress documentation. If you are looking for a way to display an email address but you do not want to use the actual email address because you are worried about spam, worry no more. Check out the &#8220;antispambot()&#8221; function that we have in WordPress. This function will take [...]]]></description> <content:encoded><![CDATA[<p>I recently found a gem in the WordPress documentation. If you are looking for a way to display an email address but you do not want to use the actual email address because you are worried about spam, worry no more.  Check out the &#8220;antispambot()&#8221; function that we have in WordPress. This function will take the email address that you want to use and obfuscates it.  When you view the page you see the actual email address.  When you view the source you do not see you see an encoded email address.</p><p><strong>Example</strong><br
/> In the example below &#8211; I will am using the WordPress function &#8220;antispambot&#8221; to create a mailto link for the  post author (this would go in the loop).</p><pre class="brush: php; title: Custom Code; notranslate">
&lt;a href=&quot;mailto:&lt;?php echo antispambot(get_the_author_meta('user_email')); ?&gt;&quot;&gt;Email the Author&lt;/a&gt;
</pre><p><strong>Further Documentation</strong><br
/> <a
href="http://codex.wordpress.org/Function_Reference/antispambot">http://codex.wordpress.org/Function_Reference/antispambot</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/10/12/create-anti-spam-email-address-in-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>SDAC Plugin Update: SDAC Related Content 2.3.1</title><link>http://www.sandboxdev.com/2011/10/11/sdac-plugin-update-sdac-related-content-2-3-1/</link> <comments>http://www.sandboxdev.com/2011/10/11/sdac-plugin-update-sdac-related-content-2-3-1/#comments</comments> <pubDate>Tue, 11 Oct 2011 15:13:46 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[SDAC Products]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Plugins]]></category> <category><![CDATA[SDAC Related Content]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7292</guid> <description><![CDATA[We just released a new version of our WordPress Related Content plugin. This update is very minor (adds in a div that surrounds all the output) but it will significantly make styling your related results easier. After you update your plugin &#8211; you can control the output by adding something like this to your stylesheet: [...]]]></description> <content:encoded><![CDATA[<p>We just released a new version of our WordPress <a
href="http://wordpress.org/extend/plugins/sdac-related-content/" target="_blank">Related Content</a> plugin.  This update is very minor (adds in a div that surrounds all the output) but it will significantly make styling your related results easier.</p><p>After you update your plugin &#8211; you can control the output by adding something like this to your stylesheet:</p><pre class="brush: css; title: Custom Code; notranslate">
#sdac_related_posts h4 {border-bottom:1px dashed #c7c7bb;margin:15px 0 5px 0;padding-bottom:5px;}
#sdac_related_posts ul {margin:10px 0 10px 20px;}
#sdac_related_posts ul li {margin:0 0 3px 0;}
</pre><p>* The code above is what styles the related posts on this site.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/10/11/sdac-plugin-update-sdac-related-content-2-3-1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>bbPress as a Plugin</title><link>http://www.sandboxdev.com/2011/08/19/bbpress-as-a-plugin/</link> <comments>http://www.sandboxdev.com/2011/08/19/bbpress-as-a-plugin/#comments</comments> <pubDate>Fri, 19 Aug 2011 20:41:27 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[bbPress]]></category> <category><![CDATA[WordPress Plugins]]></category> <category><![CDATA[bbPress beta]]></category> <category><![CDATA[WordPress plugin]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7235</guid> <description><![CDATA[After completing a site refresh (updated theme, use of custom post type for our portfolio/products), I also decided to migrate from the standalone version of bbPress to the new bbPress plugin. Everything went smoothly and I plan to spend some time customizing the layouts after I read more about best practices. All our forums got [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.bbpress.org"><img
src="http://www.sandboxdev.com/wp-content/blogs.dir/5/files/2009/04/bbpress-logo.png" alt="" title="bbpress-logo" width="200" height="69" class="alignleft size-full wp-image-1836" /></a>After completing a site refresh (updated theme, use of custom post type for our portfolio/products), I also decided to migrate from the standalone version of bbPress to the new bbPress plugin.  Everything went smoothly and I plan to spend some time customizing the layouts after I read more about best practices. All our forums got imported and are still available at: <a
href="http://www.sandboxdev.com/forums">http://www.sandboxdev.com/forums</a>.  Watch for some upcoming posts on how to customize this new version of bbPress.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/08/19/bbpress-as-a-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Easily Add Page Excerpts in WordPress</title><link>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/</link> <comments>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/#comments</comments> <pubDate>Tue, 09 Aug 2011 14:40:53 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[add_post_type_support]]></category> <category><![CDATA[functions.php]]></category> <category><![CDATA[the_excerpt]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1419</guid> <description><![CDATA[Ever need to add an excerpt field for WordPress when working with pages? There is an easy, one line way to do this (no plugin needed). Simply add this to your theme&#8217;s functions.php file: Once you have that in place &#8211; you can then use the WordPress the_excerpt() function to show the excerpt within the [...]]]></description> <content:encoded><![CDATA[<p>Ever need to add an excerpt field for WordPress when working with pages?  There is an easy, one line way to do this (no plugin needed).  Simply add this to your theme&#8217;s functions.php file:</p><pre class="brush: php; title: Custom Code; notranslate">
add_post_type_support( 'page', 'excerpt' );
</pre><p>Once you have that in place &#8211; you can then use the WordPress the_excerpt() function to show the excerpt within the theme.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress 3.2 is Available</title><link>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/</link> <comments>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/#comments</comments> <pubDate>Wed, 06 Jul 2011 14:51:04 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Updates]]></category> <category><![CDATA[WordPress 3.2]]></category> <category><![CDATA[WordPress Update]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1416</guid> <description><![CDATA[WordPress 3.2 has officially been released. The update contains a number of changes making WordPress faster with a refreshed backend user interface. You can read more about all the changes and updates that went into 3.2 if you are interested. You can also see all the specific changes/fixes as well. Download the latest versions of [...]]]></description> <content:encoded><![CDATA[<p>WordPress 3.2 has officially been released. The update contains a number of changes making WordPress faster with a refreshed backend user interface.  You can read more about <a
href="http://codex.wordpress.org/Version_3.2">all the changes and updates that went into 3.2</a> if you are interested.  You can also <a
href="http://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;order=priority&amp;milestone=3.2&amp;resolution=fixed">see all the specific changes/fixes</a> as well.</p><p>Download the latest versions of WordPress: <a
href="http://wordpress.org/wordpress-3.2.zip">WordPress 3.2</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress 3.1.3 Is Available</title><link>http://www.sandboxdev.com/2011/05/26/wordpress-3-1-3-is-available/</link> <comments>http://www.sandboxdev.com/2011/05/26/wordpress-3-1-3-is-available/#comments</comments> <pubDate>Thu, 26 May 2011 13:35:44 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Updates]]></category> <category><![CDATA[Security Update]]></category> <category><![CDATA[WordPress 3.1.3]]></category> <category><![CDATA[WordPress Update]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1413</guid> <description><![CDATA[WordPress 3.1.3 has officially been released. The update contains security fixes for all previous versions. You can read more about all the changes and updates that went into 3.1.3 if you are interested. You can also see all the specific bug/security fixes as well. It is recommended that everyone applies this update promptly. Download the [...]]]></description> <content:encoded><![CDATA[<p>WordPress 3.1.3 has officially been released. The update contains security fixes for all previous versions.  You can read more about <a
href="http://codex.wordpress.org/Version_3.1.3">all the changes and updates that went into 3.1.3</a> if you are interested.  You can also <a
href="http://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;order=priority&amp;milestone=3.1.3&amp;resolution=fixed">see all the specific bug/security fixes</a> as well.  It is recommended that everyone applies this update promptly.</p><p>Download the latest versions of WordPress: <a
href="http://wordpress.org/wordpress-3.1.3.zip">WordPress 3.1.3</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/05/26/wordpress-3-1-3-is-available/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>SDAC Plugin Update: SDAC Translate 1.2.6</title><link>http://www.sandboxdev.com/2011/05/19/sdac-plugin-update-sdac-translate-1-2-6/</link> <comments>http://www.sandboxdev.com/2011/05/19/sdac-plugin-update-sdac-translate-1-2-6/#comments</comments> <pubDate>Thu, 19 May 2011 20:47:10 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC Products]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Plugins]]></category> <category><![CDATA[SDAC Translate]]></category> <category><![CDATA[SDAC Translate 1.2.5]]></category> <category><![CDATA[SDAC Translate 1.2.6]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1409</guid> <description><![CDATA[We just released the latest version of SDAC Translate (1.2.6). This update fixes a display issue introduced with 1.2.5. Download the latest version of SDAC Translate from WordPress.org.]]></description> <content:encoded><![CDATA[<p>We just released the latest version of <a
href="http://wordpress.org/extend/plugins/sdac-translate/">SDAC Translate (1.2.6)</a>.  This update fixes a display issue introduced with 1.2.5.</p><p><a
href="http://wordpress.org/extend/plugins/sdac-translate/">Download the latest version of SDAC Translate</a> from WordPress.org.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/05/19/sdac-plugin-update-sdac-translate-1-2-6/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
