<?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>BinaryM Inc. &#187; WordPress</title>
	<atom:link href="http://binarym.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://binarym.com</link>
	<description>I dunno, Internet?</description>
	<lastBuildDate>Wed, 04 Apr 2012 20:26:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dedicated WordPress server</title>
		<link>http://binarym.com/2011/dedicated-wordpress-server/</link>
		<comments>http://binarym.com/2011/dedicated-wordpress-server/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 22:43:24 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[BinaryM]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Hosting]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=1329</guid>
		<description><![CDATA[We're putting the finishing touches on our new WordPress dedicated server today. Huge thanks to our friends at G Squared Computing and Illuminated Hosting for helping get it dialed in and setup at the colocation facility. Hat tip to the Covell Group for their excellent monitoring service. Everything is running great, really looking forward to migrating client sites to this new box.]]></description>
			<content:encoded><![CDATA[<p><strong>Great news everybody!</strong></p>
<p>We&#8217;re putting the finishing touches on our new WordPress dedicated server today. Huge thanks to our friends at <a href="http://gsquaredcomputing.com/">G Squared Computing</a> and <a href="http://www.illuminatedhosting.com/">Illuminated Hosting</a> for helping get it dialed in and setup at the colocation facility. Hat tip to the <a href="http://covellgroup.com/">Covell Group</a> for their excellent monitoring service. Everything is running great, really looking forward to migrating client sites to this new box.</p>
<h3>Nerdy Details</h3>
<ol>
<li>Intel Xeon processor</li>
<li>12GB Memory</li>
<li>500GB RAID Storage</li>
<li>DirectAdmin backend</li>
<li>Redundant power</li>
<li>rdiff-backup nightly backups</li>
</ol>
<h3>Server Photos</h3>
<p><img class="featured-image size-full wp-image-1330" title="server-memory" src="http://cdn.binarym.com/wp-content/uploads/2011/12/server-memory.jpg" alt="" width="620" height="280" /><img class="featured-image alignnone size-full wp-image-1332" title="server-network" src="http://cdn.binarym.com/wp-content/uploads/2011/12/server-network.jpg" alt="" width="620" height="280" /><img class="featured-image alignnone size-full wp-image-1331" title="server-xeon" src="http://cdn.binarym.com/wp-content/uploads/2011/12/server-xeon.jpg" alt="" width="620" height="280" /></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pagination for Pages</title>
		<link>http://binarym.com/2011/pagination-for-pages/</link>
		<comments>http://binarym.com/2011/pagination-for-pages/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 18:56:48 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=1236</guid>
		<description><![CDATA[Download Pagination for Pages at WordPress.org Pagination for Pages is a WordPress plugin that allows you to easily create pagination style navigation elements for pages (or any other custom post type). It uses a numerical based system along with next &#38; back navigation elements. The plugin includes a single function, pagination_for_pages(), that accepts a single parameter, [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://wordpress.org/extend/plugins/pagination-for-pages/">Download Pagination for Pages at WordPress.org</a></h3>
<p>Pagination for Pages is a WordPress plugin that allows you to easily create pagination style navigation elements for pages (or any other custom post type). It uses a numerical based system along with next &amp; back navigation elements.</p>
<p>The plugin includes a single function, pagination_for_pages(), that accepts a single parameter, $getPagesQuery. The parameter is fed to <a href="http://codex.wordpress.org/Function_Reference/get_pages">get_pages()</a>; default options are &#8220;<em>sort_column=menu_order&amp;sort_order=asc</em>&#8220;. Override that with whatever you want from the get_pages() documentation. The function returns an unordered list with the class of paginationForPages.</p>
<h3>Example</h3>
<p>We&#8217;re using this plugin in the <a href="http://binarym.com/project/">Project</a> section of our website. Take a look at the bottom of the <a href="http://binarym.com/project/neotech-aqua/">Neotech Aqua</a> project page for a visual example. Here&#8217;s the code that we&#8217;re running:</p>
<h4>single-project.php template</h4>
<pre class="brush: php; title: ; notranslate">
&lt;?php
 	if (function_exists('pagination_for_pages')) {
 		echo pagination_for_pages('post_type=project&amp;sort_column=post_date');
 	}
?&gt;
</pre>
<h4>style.css file</h4>
<pre class="brush: css; title: ; notranslate">
.paginationForPages {
	list-style:none;
	text-align:center;
	margin:0;
	padding:0;
}
.paginationForPages li {
	display:inline;
	font-size:.9em;
	padding:0 .25em;
}
</pre>
<h2>New feature requests? Need support? Bug reports? Customizations? Drop a comment.</h2>
<h3>History</h3>
<ul>
<li><strong>0.1</strong>: Initial release, very bare bones.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>That&#8217;s a rap for WordCamp San Diego</title>
		<link>http://binarym.com/2011/thats-a-rap-for-wordcamp-san-diego/</link>
		<comments>http://binarym.com/2011/thats-a-rap-for-wordcamp-san-diego/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 18:00:40 +0000</pubDate>
		<dc:creator>Chris Daley</dc:creator>
				<category><![CDATA[San Diego]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=936</guid>
		<description><![CDATA[It has taken about a week for the buzz of WordCamp San Diego to wear off and thus the delay in posting our usual recap.  With that being said: Interesting Stats For WordCamp San Diego 2011 23 Sponsors 18 Speakers 12.5 Hours of WordPress Content 7 Organizers 200+ Attendees 4 Events A Whole Lot of [...]]]></description>
			<content:encoded><![CDATA[<p>It has taken about a week for the buzz of <a href="http://2011.sandiego.wordcamp.org/">WordCamp San Diego</a> to wear off and thus the delay in posting our usual recap.  With that being said:</p>
<h3>Interesting Stats For WordCamp San Diego 2011</h3>
<ul>
<li>23 Sponsors</li>
<li>18 Speakers</li>
<li>12.5 Hours of WordPress Content</li>
<li>7 Organizers</li>
<li>200+ Attendees</li>
<li>4 Events</li>
<li>A Whole Lot of WordPress Love</li>
</ul>
<h3>Did I hear something about WordPress at WordCamp San Diego</h3>
<p>I am sure you did!  From how to design themes for WordPress to taking the platform to the next level as a content management system, WordCamp delivered.  Sadly, with having to check on so many details and Matt having to prepare for his presentation, we were only able to catch a couple of moments.  But what we did was outstanding!</p>
<h3>Video is coming soon!</h3>
<p>Not only did WordCamp San Diego steam both tracks of the conference live, <a href="http://2011.sandiego.wordcamp.org/community-feedback/1555">to viewers as far away as Trinidad &amp; Tobago</a> I might add, we also recorded every minute. Special thanks to our client <a href="http://www.hildrethmedia.com/">Hildreth Media Group</a>.  Word on the street is that the video is post production and on the way to <a href="http://wordpress.tv/category/wordcamptv/">WordCamp.tv</a>.</p>
<h3>We got to meet a lot of great people</h3>
<p>One of the best aspects of participating in a WordCamp is the ability to meet old friends and make some new ones.  What WordCamp would be complete without seeing <a href="http://twitter.com/#!/vegasGeek">John</a> &amp; <a href="http://twitter.com/#!/toddhuish">Todd</a> at 9seeds or <a href="http://twitter.com/#!/jeffreyzinn">Jeff</a> and <a href="http://twitter.com/#!/brandondove">Brandon</a> at Pixel Jar?  Even better is catching up with old friends like <a href="http://twitter.com/#!/mattsurfs">Matt Browne</a>, <a href="http://twitter.com/#!/jckirkwood">Jodi Kirkwood</a>, <a href="http://twitter.com/#!/melgordon">Melani Gordon</a> and <a href="http://twitter.com/#!/lukepilon">Luke Pilon</a>.  Add in the opportunity to engage with some of the brightest minds in the WordPress community like <a href="http://twitter.com/#!/aaroncampbell">Aaron Campbell</a>, <a href="http://twitter.com/#!/petemall">Pete Mall</a>, <a href="http://twitter.com/#!/codylandefeld">Cody Landefeld</a>, <a href="http://twitter.com/#!/housechick">Kelley Koehler</a> and <a href="http://twitter.com/#!/webtw">Lucy Beer</a>.  Add a dash of Automatticians like <a href="http://twitter.com/#!/designsimply">Sheri Bigelow</a>, top it off with <a href="http://twitter.com/#!/photomatt">Matt Mullenweg</a> and you have a bowl full of win with a side of inspiration.</p>
<h3>The most important take away from WordCamp San Diego for BinaryM?</h3>
<p>To get more involved.  While plans for WordCamp San Diego 2012 are already under way, we all need to make a conscious effort to learn, give back and embrace new members to the WordPress community.  How can you get involved?  Well you can join BinaryM at WordCamps in <a href="http://2011.sf.wordcamp.org/">San Francisco</a> or <a href="http://2011.la.wordcamp.org/">Los Angeles</a> or you can participate at the local <a href="http://www.meetup.com/WordPress-San-Diego/">San Diego WordPress Meetup</a>.  Either way&#8230;get involved!</p>
<h3>Last but now least, a special thank you to Dre Armeda at Cubic Two</h3>
<p>About 7 months ago I reached out to <a href="http://twitter.com/#!/armeda">Dre</a>, who had been spearheading the effort to bring the first WordCamp to San Diego for over a year.  Not sure what to expect, I was blown away by his passion for the community and his desire to make San Diego one of the premier WordCamp destinations.  Working late into the night on several occasions was easy as we both were able to see the same opportunity ahead.  Not only did we gain a collaborator, most importantly we gained a friend.</p>
<p>And that, folks, is what WordCamp is all about!  See you in 2012!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordCamp San Diego: WordPress as a CMS</title>
		<link>http://binarym.com/2011/wordcamp-san-diego-wordpress-as-a-cms/</link>
		<comments>http://binarym.com/2011/wordcamp-san-diego-wordpress-as-a-cms/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 18:15:00 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[San Diego]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom Post Types]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[WordCamp San Diego]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=865</guid>
		<description><![CDATA[If you&#8217;re sitting in/streaming my WordPress as a CMS talk, this post contains a bunch of stuff may be of interest to you. WordCamp San Diego: BinaryM CMS Theme PageMash WordPress.org Plugin Page Modified version Hero Image add_theme_support set_post_thumbnail_size add_image_size Navigation wp_list_pages wp_nav_menu register_nav_menu Notifications register_sidebar dynamic_sidebar About add_post_type_support Shortcode API add_shortcode get_pages Team register_post_type [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re sitting in/streaming my WordPress as a CMS talk, this post contains a bunch of stuff may be of interest to you.</p>
<ol>
<li><strong><a href="http://cdn.binarym.com/wp-content/uploads/2011/07/binary-cms-theme.zip">WordCamp San Diego: BinaryM CMS Theme</a></strong></li>
<li><strong>PageMash</strong>
<ol>
<li><a href="http://wordpress.org/extend/plugins/pagemash/">WordPress.org Plugin Page</a></li>
<li><a title="pageMash, Trash, Auto Draft and WordPress 3.0" href="http://binarym.com/2010/pagemash-trash-auto-draft-and-wordpress-3-0/">Modified version</a></li>
</ol>
</li>
<li><strong>Hero Image</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/add_theme_support">add_theme_support</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/set_post_thumbnail_size">set_post_thumbnail_size</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/add_image_size">add_image_size</a></li>
</ol>
</li>
<li><strong>Navigation</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_list_pages">wp_list_pages</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/register_nav_menu">register_nav_menu</a></li>
</ol>
</li>
<li><strong>Notifications</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/register_sidebar">register_sidebar</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/dynamic_sidebar">dynamic_sidebar</a></li>
</ol>
</li>
<li><strong>About</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/add_post_type_support">add_post_type_support</a></li>
<li><a href="http://codex.wordpress.org/Shortcode_API">Shortcode API</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/add_shortcode">add_shortcode</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_pages">get_pages</a></li>
</ol>
</li>
<li><strong>Team</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/register_post_type">register_post_type</a></li>
<li><a href="http://code.google.com/p/timthumb/">TimThumb</a></li>
</ol>
</li>
<li><strong>Products</strong>
<ol>
<li><a href="http://codex.wordpress.org/Function_Reference/WP_Query">WP_Query</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/add_filter">add_filter</a></li>
</ol>
</li>
<li><strong>Press</strong>
<ol>
<li><a href="http://codex.wordpress.org/Conditional_Tags">Conditional Tags</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_option">get_option</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/apply_filters">apply_filters</a></li>
</ol>
</li>
<li><strong>Contact</strong>
<ol>
<li><a href="http://www.gravityforms.com/">Gravity Forms</a></li>
</ol>
</li>
</ol>
<h3>Something missing? Bugs? Questions? Comments? Suggestions?<br />
Leave a comment and we can meet up later to discuss.</h3>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>ALoN David Photography &#8211; jQuery + WordPress Fun</title>
		<link>http://binarym.com/2011/alon-david-photography-jquery-wordpress-fun/</link>
		<comments>http://binarym.com/2011/alon-david-photography-jquery-wordpress-fun/#comments</comments>
		<pubDate>Wed, 18 May 2011 16:35:15 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=693</guid>
		<description><![CDATA[ALoN David runs WordPress to power his San Diego Wedding Photography blog. He needed an interactive way to feature his work on the blog&#8217;s homepage. We created cross platform homepage that displays his featured image and allows users to filter by category. Take a look at ALoN&#8217;s Photography Blog.]]></description>
			<content:encoded><![CDATA[<p>ALoN David runs WordPress to power his <a href="http://www.alondavidphotography.com/">San Diego Wedding Photography</a> blog. He needed an interactive way to feature his work on the blog&#8217;s homepage. We created cross platform homepage that displays his featured image and allows users to filter by category.</p>
<p>Take a look at <a href="http://www.alondavidphotography.com/blog/">ALoN&#8217;s Photography Blog.</a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BinaryM CMS Pack &#8211; WordPress Plugin</title>
		<link>http://binarym.com/2011/binarym-cms-pack-wordpress-plugin/</link>
		<comments>http://binarym.com/2011/binarym-cms-pack-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 22:30:16 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[BinaryM]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BinaryM CMS Pack]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=604</guid>
		<description><![CDATA[This post is mostly for internal documentation of our CMS plugin. If you're interested in any of the functionality, comment and we may make it public.]]></description>
			<content:encoded><![CDATA[<p>This post is mostly for internal documentation of our CMS plugin. If you&#8217;re interested in any of the functionality, comment and we may make it public.</p>
<h3>Shortcodes</h3>
<h4>[ links ]</h4>
<p>Uses <a href="http://codex.wordpress.org/Function_Reference/wp_list_bookmarks">wp_list_bookmarks</a> to display links using a shortcode, helpful for &#8220;resource&#8221; sections of sites.  Displayed in a list format with the class of links.</p>
<ol>
<li>limit <em>-1</em></li>
<li>category</li>
<li>exclude_category</li>
<li>category_name</li>
<li>orderby <em>rating</em></li>
<li>order <em>DESC</em></li>
<li>show_description <em>0</em></li>
</ol>
<h4>[ childpages ]</h4>
<p>Uses <a href="http://codex.wordpress.org/Function_Reference/get_pages">get_pages</a> to fetch children of current page, useful when you have a container page with no real content. It outputs a div with class of childpage and h3 &amp; p tags for the title &amp; excerpt.</p>
<ol>
<li>readmore <em>more</em></li>
</ol>
<h4>[ postsby ]</h4>
<p>Uses <a href="http://codex.wordpress.org/Function_Reference/WP_Query">WP_Query</a> to retrieve a specific set of posts from the database. Outputs a div with class of post and h3 &amp; post content.</p>
<ol>
<li>showposts <em>5</em></li>
<li>category_name</li>
<li>cat</li>
<li>tag</li>
<li>post_type <em>post</em></li>
<li>taxonomy</li>
<li>term</li>
</ol>
<h4>[ iframe ]</h4>
<p>Makes adding iframe&#8217;d content easy, outputs an iframe with class binaryIframe. Add another class using the class attribute</p>
<ol>
<li>src</li>
<li>width</li>
<li>height</li>
<li>class</li>
</ol>
<h4>[ files ]</h4>
<p>Uses <a href="http://codex.wordpress.org/Function_Reference/get_children">get_children</a> to display files that are attached to a page. Outputs CSS classes based on the mime_type.</p>
<ol>
<li>post_mime_type</li>
<li>numberposts <em>-1</em></li>
</ol>
<h3>Misc</h3>
<p>Includes code from the excellent plugin <a href="http://masseltech.com/plugins/page-excerpt/">Page Excerpt</a> and <a href="http://madething.org/post/1529181499/solved-moving-image-attachments-between-pages-in">Johnathon Williams code to move attachements between pages.</a></p>
<h3>Updates</h3>
<ol>
<li><strong>01/12/12 </strong>Added custom post type support to childNav</li>
<li><strong>05/25/11</strong> Added files shortcode</li>
<li><strong>05/23/11 </strong>Added more options to iframe shortcode</li>
<li><strong>05/04/11</strong> Added ability to move attachements between pages</li>
<li><strong>03/28/11</strong> Fixed orderby for links</li>
<li><strong>03/01/11 </strong>Updated page excerpt code for 3.1</li>
<li><strong>02/10/11 </strong>Added custom post type support to postsby shortcode</li>
<li><strong>01/13/11</strong> Initial documenation</li>
</ol>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mesa Liquor launches the San Diego Beer Store Website</title>
		<link>http://binarym.com/2010/mesa-liquor-launches-the-san-diego-beer-store-website/</link>
		<comments>http://binarym.com/2010/mesa-liquor-launches-the-san-diego-beer-store-website/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 20:18:04 +0000</pubDate>
		<dc:creator>Chris Daley</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom Post Types]]></category>
		<category><![CDATA[Gravity Forms]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=595</guid>
		<description><![CDATA[A couple of months ago, we were introduced to Chris at Mesa Liquor.  He and his cousin have been offering one of THE most extensive collections of beers for sale in San Diego for a long time.  The challenge was not many people knew this unless you visited the store.  Enter, stage left - the beer loving staff at BinaryM.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-596" title="San Diego Beer Store" src="http://cdn.binarym.com/wp-content/uploads/2010/12/San-Diego-Beer-Store.png" alt="" width="600" height="248" /></p>
<p>A couple of months ago, we were introduced to Chris at Mesa Liquor.  He and his cousin have been offering one of THE most extensive collections of beers for sale in San Diego for a long time.  The challenge was not many people knew this unless you visited the store.  Enter, stage left &#8211; the beer loving staff at BinaryM.</p>
<p><a href="http://sandiegobeerstore.com/beer-list/"><img class="alignright size-full wp-image-597" title="Beer Plugin" src="http://cdn.binarym.com/wp-content/uploads/2010/12/Beer-Plugin.png" alt="" width="200" height="182" /></a>After a little work customizing our base BinaryM WordPress theme, we got to work on the big item for this project, how to display inventory for the store but in a system that was easy for Mesa to manage.  Using the infrastructure of Custom Post types in WordPress and we plugin that allows for beers to be added, inventory modified and removed with ease.  The next thing we did was create a simple form using <a title="Best WordPress Form Plugin" href="http://www.gravityforms.com/">Gravity Forms</a>, so that customers could tell Mesa what they like and what they should stock.  When combined, these two tools allow for Mesa to have an accurate inventory presented to online visitors and an easy way to keep the shelves stocked with what they want.</p>
<p>If you love beer and live in San Diego, we suggest you pay the <a href="http://sandiegobeerstore.com/">San Diego Beer Store</a> a visit.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Head Cleanup &#8211; WordPress Plugin</title>
		<link>http://binarym.com/2010/wordpress-head-cleanup-plugin/</link>
		<comments>http://binarym.com/2010/wordpress-head-cleanup-plugin/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 17:20:55 +0000</pubDate>
		<dc:creator>Matt McInvale</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Head Cleanup]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=572</guid>
		<description><![CDATA[We like keeping the head area free from unnecessary tags on all our client sites. This normally involves including a couple of lines in each site's functions.php. Sometimes, new WordPress versions introduce new tags that we have to manually remove from each site. This isn't fun.]]></description>
			<content:encoded><![CDATA[<p>We like keeping the head area free from unnecessary tags on all our client sites. This normally involves including a couple of lines in each site&#8217;s functions.php. Sometimes, new WordPress versions introduce new tags that we have to manually remove from each site. This isn&#8217;t fun.</p>
<p>I wrote a simple plugin to automate this process and give us control over each element without having to manually edit files anymore. Booyah!</p>
<h3><a href="http://wordpress.org/extend/plugins/header-cleanup/">Download Head Cleanup Plugin at WordPress.org</a></h3>
<h4>Versions:</h4>
<ul>
<li>0.0.5 Added option to remove passive localization JavaScript</li>
<li>0.0.4 Added comments RSS removal</li>
<li>0.0.3 Added shortlink removal</li>
<li>0.0.2 Updated verbiage</li>
<li>0.0.1 Initial release</li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stennett and Casino &#8211; San Diego ERISA Attorneys</title>
		<link>http://binarym.com/2010/stennett-and-casino-san-diego-erisa-attorneys/</link>
		<comments>http://binarym.com/2010/stennett-and-casino-san-diego-erisa-attorneys/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 17:46:12 +0000</pubDate>
		<dc:creator>Chris Daley</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BinaryM CMS Pack]]></category>
		<category><![CDATA[pageMash]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=537</guid>
		<description><![CDATA[Stennett and Casino is a San Diego law firm that specializes in ERISA and insurance claims.  Jack Stennett and Barbara Casino were referred to us by their IT firm Bl3ndLabs to update the design of their site and migrate to a CMS that would allow for easier content management on their end.  The new Stennett and Casino site]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-538" title="San-Diego-ERISA-Attorneys" src="http://cdn.binarym.com/wp-content/uploads/2010/08/San-Diego-ERISA-Attorneys.png" alt="San-Diego-ERISA-Attorneys" width="600" height="240" /><a href="http://stennettcasino.com/">Stennett and Casino is a San Diego law firm that specializes in ERISA and other insurance claims</a>.  Jack Stennett and Barbara Casino were referred to us by their IT firm <a title="San Diego IT Firm" href="http://www.bl3ndlabs.com">Bl3ndLabs</a> to update the design of their site and migrate to a CMS that would allow for easier content management on their end.  The new Stennett and Casino site is built on <a title="WordPress 3.0" href="http://codex.wordpress.org/Version_3.0">WordPress 3.0</a> and is using the BinaryM CMS pack and <a href="http://wordpress.org/extend/plugins/pagemash/">pageMash</a> for plugins.<br />
One of the great new features with WordPress that we are using with this design is the <a href="http://codex.wordpress.org/Post_Thumbnails">post thumbnail functionality</a>.  Without modifying the theme files, the client is now able to change the look of their site <a href="http://stennettcasino.com/areas-of-practice/disability-claims/">page</a> by <a href="http://stennettcasino.com/areas-of-practice/life-insurance-claims/">page</a> by simply uploading a different header image in the page manager.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>San Diego ICAC Task Force</title>
		<link>http://binarym.com/2010/san-diego-icac-task-force/</link>
		<comments>http://binarym.com/2010/san-diego-icac-task-force/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:16:48 +0000</pubDate>
		<dc:creator>Chris Daley</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BinaryM CMS Pack]]></category>

		<guid isPermaLink="false">http://binarym.com/?p=529</guid>
		<description><![CDATA[A couple of weeks ago, the San Diego Internet Crimes Against Children (SDICAC) Task Force contacted us for some help with their website.  Their biggest challenge, and one that is all-too-common, was the inability to manage the day to day upkeep of their site.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-530" title="SDICAC" src="http://cdn.binarym.com/wp-content/uploads/2010/07/SDICAC.png" alt="" width="600" height="351" /></p>
<p>A couple of weeks ago, the <a href="http://sdicac.org/">San Diego Internet Crimes Against Children</a> (SDICAC) Task Force contacted us for some help with their website.  Their biggest challenge, and one that is all-too-common, was the inability to manage the day to day upkeep of their site.</p>
<p>After a quick refresh of the design, we built the new site on <a href="http://wordpress.org/">WordPress 3.0</a>, which is a perfect CMS for site owners who want to manage their content on a daily basis.  The site itself is your basic page/post hybrid using all of the <a href="http://wordpress.org/support/topic/345127">core features that we have come to love with WordPress</a>.</p>
<p>SDICAC is a collaboration of local, state and federal agencies who investigate offenders using the Internet, online communication systems, or other computer technology to sexually exploit children.  BinaryM is proud to have SDICAC as a client and we look forward to working with them to keep the internet a safe place for <a href="http://sdicac.org/for-kids-teens/">kids</a> and <a href="http://sdicac.org/for-parents/">families</a>.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Content Delivery Network via cdn.binarym.com

Served from: binarym.com @ 2012-05-17 07:07:42 -->
