<?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; Search Results  &#187;  WordPress</title> <atom:link href="http://www.sandboxdev.com/search/WordPress/feed/rss2/" 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>SDAC Inc. Is Hiring</title><link>http://www.sandboxdev.com/2011/11/28/sdac-inc-is-hiring-2/</link> <comments>http://www.sandboxdev.com/2011/11/28/sdac-inc-is-hiring-2/#comments</comments> <pubDate>Mon, 28 Nov 2011 15:33:00 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[SDAC News]]></category> <category><![CDATA[jobs]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7348</guid> <description><![CDATA[Once again we are looking to expand our team. If you are a WordPress developer and would like to be involved in some great and unique WordPress projects &#8211; we want to hear from you. Check out our Craigslist post: http://chicago.craigslist.org/nwc/web/2724395805.html for the details.]]></description> <content:encoded><![CDATA[<p>Once again we are looking to expand our team.  If you are a WordPress developer and would like to be involved in some great and unique WordPress projects &#8211; we want to hear from you.  Check out our Craigslist post: <a
href="http://chicago.craigslist.org/nwc/web/2724395805.html" class="broken_link">http://chicago.craigslist.org/nwc/web/2724395805.html</a> for the details.</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/sdac-inc-is-hiring-2/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>SDAC Plugin Update: SDAC Post Slideshows 1.1.3</title><link>http://www.sandboxdev.com/2011/09/07/sdac-plugin-update-sdac-post-slideshows-1-1-3/</link> <comments>http://www.sandboxdev.com/2011/09/07/sdac-plugin-update-sdac-post-slideshows-1-1-3/#comments</comments> <pubDate>Wed, 07 Sep 2011 20:14:31 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[SDAC News]]></category> <category><![CDATA[SDAC Products]]></category> <category><![CDATA[SDAC Plugin]]></category> <category><![CDATA[SDAC Post Slideshows]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7259</guid> <description><![CDATA[We just updated our SDAC Post Slideshows to version 1.1.3. The update includes: Custom set height fix Updated version of jQuery Cycle]]></description> <content:encoded><![CDATA[<p>We just updated our <a
href="http://wordpress.org/extend/plugins/sdac-post-slideshows/" title="SDAC Slideshow WordPress plugin">SDAC Post Slideshows</a> to version 1.1.3. The update includes:</p><ul><li>Custom set height fix</li><li>Updated version of jQuery Cycle</li></ul> <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/09/07/sdac-plugin-update-sdac-post-slideshows-1-1-3/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Welcome Andy!</title><link>http://www.sandboxdev.com/2011/09/01/welcome-andy/</link> <comments>http://www.sandboxdev.com/2011/09/01/welcome-andy/#comments</comments> <pubDate>Thu, 01 Sep 2011 12:51:10 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[SDAC News]]></category> <category><![CDATA[Andy]]></category> <category><![CDATA[new hire]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7256</guid> <description><![CDATA[I would personally like to welcome our new full time Web Developer &#8211; Andy Nguyen. He had been working with us as a contractor for the last few months working on WordPress plugin, advanced theme development and looked like a good fit for our company. I look forward to working with him and building great [...]]]></description> <content:encoded><![CDATA[<p>I would personally like to welcome our new full time Web Developer &#8211; Andy Nguyen.  He had been working with us as a contractor for the last few months working on WordPress plugin, advanced theme development and looked like a good fit for our company.  I look forward to working with him and building great things!</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/09/01/welcome-andy/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>New Commercial Theme Coming Soon</title><link>http://www.sandboxdev.com/2011/08/22/new-commercial-theme-coming-soon/</link> <comments>http://www.sandboxdev.com/2011/08/22/new-commercial-theme-coming-soon/#comments</comments> <pubDate>Mon, 22 Aug 2011 14:41:01 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC]]></category> <category><![CDATA[SDAC News]]></category> <category><![CDATA[SDAC Products]]></category> <category><![CDATA[Lucidity]]></category> <category><![CDATA[Lucidity Catalog]]></category> <category><![CDATA[WordPress commercial themes]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=7243</guid> <description><![CDATA[After working on Lucidity Catalog &#8211; we have officially started working on our next WordPress commercial theme: Chicago. Stay tuned in the next few weeks for more information!]]></description> <content:encoded><![CDATA[<p>After working on <a
href="http://"http://www.lucidity.sandboxdev.com" title="Lucidity Commercial WordPress Theme">Lucidity</a> and <a
href="http://"http://www.lucidity-catalog.sandboxdev.com" title="Lucidity Catalog Commercial WordPress Theme">Lucidity Catalog</a> &#8211; we have officially started working on our next WordPress commercial theme: Chicago.  Stay tuned in the next few weeks for more information!</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/22/new-commercial-theme-coming-soon/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress/PHP Developer</title><link>http://www.sandboxdev.com/wordpress-php-developer/</link> <comments>http://www.sandboxdev.com/wordpress-php-developer/#comments</comments> <pubDate>Tue, 16 Aug 2011 16:23:26 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <guid
isPermaLink="false">http://www.sandboxdev.com/?page_id=1893</guid> <description><![CDATA[We are looking for a WordPress/PHP Developer to join us full time to build custom WordPress plugins, themes, support existing clients, and work on custom PHP/MySQL applications. What we are looking for: Can confidently write/debug PHP code Excited about WordPress Has developed WordPress plugins Appreciates the power and simplicity of jQuery Understands the difference between [...]]]></description> <content:encoded><![CDATA[<p>We are looking for a WordPress/PHP Developer to join us full time to build custom WordPress plugins, themes, support existing clients, and work on custom PHP/MySQL applications.</p><h3>What we are looking for:</h3><ul><li>Can confidently write/debug PHP code</li><li>Excited about WordPress</li><li>Has developed WordPress plugins</li><li>Appreciates the power and simplicity of jQuery</li><li>Understands the difference between CSS classes and IDs</li><li>Comfortable with subversion</li><li>Has a portfolio to back up the items in this list</li><li>PHP Zend Certification is preferred</li><li>Good communication skills</li></ul><h3>Benefits:</h3><ul><li>Can work remotely although local candidates are preferred.</li><li>New Apple hardware</li><li>Pay for this position is market rate competitive and will reflect experience</li><li>Employer retirement match up to 3%</li><li>Three weeks paid time off</li><li>Paid holidays (New Years Day, Memorial Day, Independence Day, Labor Day, Thanksgiving, Christmas)</li></ul><p>If you are interested in working with us, please send an email to jobs@sandboxdev.com with your location, your availability, and a link to your portfolio, and your salary history.</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/wordpress-php-developer/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
