<?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>Red Bridge Internet</title>
	<atom:link href="http://www.redbridgenet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redbridgenet.com</link>
	<description>Professional WordPress and WordPress Plugin Developers in the San Francisco Bay Area</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:07:49 +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>A Script to Update WordPress User Role Capabilities</title>
		<link>http://www.redbridgenet.com/wordpress/a-script-to-update-wordpress-user-role-capabilities/</link>
		<comments>http://www.redbridgenet.com/wordpress/a-script-to-update-wordpress-user-role-capabilities/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 02:41:00 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bay area wordpress consultant]]></category>
		<category><![CDATA[bay area wordpress developer]]></category>
		<category><![CDATA[bay area wordpress development]]></category>
		<category><![CDATA[bay area wordpress expert]]></category>
		<category><![CDATA[san francisco wordpress consultant]]></category>
		<category><![CDATA[san francisco wordpress developer]]></category>
		<category><![CDATA[san francisco wordpress expert]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consultant]]></category>
		<category><![CDATA[wordpress consultant san francisco]]></category>
		<category><![CDATA[wordpress developer]]></category>
		<category><![CDATA[wordpress expert]]></category>
		<category><![CDATA[wordpress expert san francisco]]></category>
		<category><![CDATA[wordpress plugin developer]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=929</guid>
		<description><![CDATA[How to update WordPress user role capabilities using a simple PHP script and WordPress user functions. I came upon this issue recently in which I had full access to a WordPress installation; files, database, etc., but my WordPress user account was originally added as an Editor or some lower role by a client/third party and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-531" title="San Francisco WordPress Consultants" src="http://www.redbridgenet.com/wp-content/uploads/wordpress_logo-150x150.png" alt="San Francisco WordPress Consultants" width="50" height="50" />How to update WordPress user role capabilities using a simple PHP script and WordPress user functions. I came upon this issue recently in which I had full access to a WordPress installation; files, database, etc., but my WordPress user account was originally added as an Editor or some lower role by a client/third party and I really needed to update to an Administrator role. Of course without the original Administrator account I couldn&#8217;t update my own role so I needed to create a script to cleanly edit user role/capabilities. Below is a script to change a WordPress user role using the WordPress function wp_update_user:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
 * Updates user role using WordPress function wp_update_user.
 *
 * Simple script to be run at webroot. Update user_id and new_role to taste
 * and run as regular PHP file on command line.
 *
 * @package WordPress
 */</span>
&nbsp;
<span style="color: #b1b100;">require</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'./wp-load.php'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// id of user to update</span>
<span style="color: #000088;">$user_id</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
 * Basic list of user roles
 *
 * administrator
 * editor
 * author
 * contributor
 * subscriber
 *
 */</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// user role to update to</span>
<span style="color: #000088;">$new_role</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'administrator'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// update user role using wordpress function</span>
wp_update_user<span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ID'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$user_id</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'role'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$new_role</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span></pre></div></div>

<p>You can take this and save it out as a file called <em><em>manually-update-role.php</em></em> or whatever you like. Open the file and update <strong>user_id</strong> and <strong>new_role</strong> and then run. Check that it ran successfully (the user role should of course be changed) and remove file. Run the file like so:</p>
<pre>
php manually-update-role.php
</pre>
<p>There are a couple pages on the web which I used as a resource:</p>
<ul>
<li><a href="http://wordpress.stackexchange.com/questions/4725/how-to-change-a-users-role">http://wordpress.stackexchange.com/questions/4725/how-to-change-a-users-role</a></li>
<li><a href="http://www.shinephp.com/how-to-change-wordpress-user-role-capabilities/">http://www.shinephp.com/how-to-change-wordpress-user-role-capabilities/</a></li>
<li><a href="http://wordpress.org/extend/plugins/user-role-editor/">http://wordpress.org/extend/plugins/user-role-editor/</a></li>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_update_user">http://codex.wordpress.org/Function_Reference/wp_update_user</a></li>
</ul>
<div>The first 2 links above approach the problem in different ways. The first link; an answer from Stack Exchange updates the user object (and doesn&#8217;t include how to create a script for the code mentioned) and the 2nd link at Shine PHP has you editing the database directly, which in my case I could have easily done, but just seems a little messy and could really lead to some problems if fat-fingered. The Shine PHP site seems to be the same people that created and maintain the plugin <a href="http://wordpress.org/extend/plugins/user-role-editor/">User Role Editor</a> which is nice but overpowered for this particular use case. There&#8217;s really only about 2 resources that are easily searchable to help you edit user role capabilities in WordPress. I&#8217;ve added a script to that.</div>
<h4>Incoming search terms:</h4><ul><li>ed recker san francisco</li><li>change role capabilities wordpress</li><li>wordpress consultant san francisco</li><li>wordpress developers in bay area</li><li>wordpress change user role script</li><li>&lt;img src= in wordpress</li><li>wordpress change user role function</li><li>upgrade wordpress php script</li><li>update user roles wordpress</li><li>wordpress function for update member lavel through php code</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/wordpress/a-script-to-update-wordpress-user-role-capabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squishy</title>
		<link>http://www.redbridgenet.com/themes/squishy/</link>
		<comments>http://www.redbridgenet.com/themes/squishy/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 23:13:56 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[responsive]]></category>
		<category><![CDATA[San Francisco web site development]]></category>
		<category><![CDATA[san francisco wordpress consultant]]></category>
		<category><![CDATA[san francisco wordpress plugin developers]]></category>
		<category><![CDATA[san francisco wordpress theme designer]]></category>
		<category><![CDATA[san francisco wordpress theme developer]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress consultant san francisco]]></category>
		<category><![CDATA[wordpress developers san francisco]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=926</guid>
		<description><![CDATA[Squishy is a Responsive WordPress Theme based on Theme Hybrid, Hybrid Core and 1140 CSS Grid. This is a Parent Theme used by Red Bridge Internet for quick deploy of Responsive WordPress Themes and projects. Squishy is hosted on BitBucket: https://bitbucket.org/ereckers/squishy It&#8217;s in active development and will be for a month or so. Incoming search [...]]]></description>
			<content:encoded><![CDATA[<p>Squishy is a Responsive WordPress Theme based on Theme Hybrid, Hybrid Core and 1140 CSS Grid. This is a Parent Theme used by Red Bridge Internet for quick deploy of Responsive WordPress Themes and projects.</p>
<p>Squishy is hosted on BitBucket:</p>
<ul>
<li><a href="https://bitbucket.org/ereckers/squishy">https://bitbucket.org/ereckers/squishy</a></li>
</ul>
<div>It&#8217;s in active development and will be for a month or so.</div>
<h4>Incoming search terms:</h4><ul><li>bay a wordpress theme html5</li><li>squishy responsive wordpress theme</li><li>new wordpress parent theme hybrid core</li><li>squishy wordpress theme</li><li>website developers san francisco california</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/themes/squishy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Nice Slide Presentation on Responsive Web Design</title>
		<link>http://www.redbridgenet.com/blogging/a-nice-slide-presentation-on-responsive-web-design/</link>
		<comments>http://www.redbridgenet.com/blogging/a-nice-slide-presentation-on-responsive-web-design/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 22:16:08 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[responsive]]></category>
		<category><![CDATA[responsive design]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=922</guid>
		<description><![CDATA[There is a wonderful presentation called, &#8220;What the Heck is Responsive Web Design&#8221; by John Polacek on his Github using scrolldeck.js: http://johnpolacek.github.com/scrolldeck.js/decks/responsive/ Definitely check out scrolldeck.js used to create the slide deck still presenation. Incoming search terms:responsive web design presentationresponsive web slidesresponsive webdesign presentation]]></description>
			<content:encoded><![CDATA[<p>There is a wonderful presentation called, &#8220;<a href="http://johnpolacek.github.com/scrolldeck.js/decks/responsive/">What the Heck is Responsive Web Design</a>&#8221; by John Polacek on his Github using <a href="http://johnpolacek.github.com/scrolldeck.js/">scrolldeck.js</a>:</p>
<ul>
<li><a href="http://johnpolacek.github.com/scrolldeck.js/decks/responsive/">http://johnpolacek.github.com/scrolldeck.js/decks/responsive/</a></li>
</ul>
<div>Definitely check out <a href="http://johnpolacek.github.com/scrolldeck.js/">scrolldeck.js</a> used to create the slide deck still presenation.</div>
<h4>Incoming search terms:</h4><ul><li>responsive web design presentation</li><li>responsive web slides</li><li>responsive webdesign presentation</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/blogging/a-nice-slide-presentation-on-responsive-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Websites Hosted on a Shared Server</title>
		<link>http://www.redbridgenet.com/how-to/how-to-find-websites-hosted-on-a-shared-server/</link>
		<comments>http://www.redbridgenet.com/how-to/how-to-find-websites-hosted-on-a-shared-server/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 21:11:37 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=919</guid>
		<description><![CDATA[If you need to list the number and names of sites hosted on a single shared host (by IP address) you can use the following two services: http://spyonweb.com/ http://w3who.net/ Alternatively, you can follow these steps: First Lookup the DNS Server: http://network-tools.com/default.asp?prog=dnsrec&#38;host=[A Website.Ext] Then Whois the Domain Server: http://whois.domaintools.com/[The Domain Server Name Above.Ext Alternatively, Bing can [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to list the number and names of sites hosted on a single shared host (by IP address) you can use the following two services:</p>
<ul>
<li><a href="http://spyonweb.com/" rel="nofollow">http://spyonweb.com/</a></li>
<li><a href="http://w3who.net/" rel="nofollow">http://w3who.net/</a></li>
</ul>
<div>Alternatively, you can follow these steps:</div>
<div>
<ul>
<li>First Lookup the DNS Server:<a href="http://network-tools.com/default.asp?prog=dnsrec&amp;host=website.com"><br />
</a><a href="http://network-tools.com/default.asp?prog=dnsrec&amp;host=">http://network-tools.com/default.asp?prog=dnsrec&amp;host=</a>[A Website.Ext]</li>
<li>Then Whois the Domain Server:<br />
<a href="http://whois.domaintools.com/">http://whois.domaintools.com/</a>[The Domain Server Name Above.Ext</li>
</ul>
<div>Alternatively, Bing can return a list of domains sitting on a single IP:</div>
<div>
<ul>
<li><a href="http://www.bing.com/search?q=ip:174.133.19.130">http://www.bing.com/search?q=ip:174.133.19.130</a></li>
</ul>
<div>That&#8217;s it. There&#8217;s a couple methods you can try when looking for the domains sharing a single host and ip address on a shared server.</div>
</div>
</div>
<h4>Incoming search terms:</h4><ul><li>list of domains hosted on ip php</li><li>find websites hosted on server</li><li>sites hosted on a server</li><li>how to check list of website in shared server</li><li>see what sites are hosted on a server</li><li>list of sites on a shared server</li><li>list of sites hosted</li><li>list of domains on shared server</li><li>list all shared hosted sites</li><li>howto find shared sites on server hosting</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/how-to/how-to-find-websites-hosted-on-a-shared-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>San Francisco WordPress Consultants</title>
		<link>http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/</link>
		<comments>http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 19:27:25 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[bay area web site development]]></category>
		<category><![CDATA[bay area wordpress consultant]]></category>
		<category><![CDATA[bay area wordpress developer]]></category>
		<category><![CDATA[bay area wordpress development]]></category>
		<category><![CDATA[bay area wordpress expert]]></category>
		<category><![CDATA[plugin development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[san francisco wordpress consultant]]></category>
		<category><![CDATA[san francisco wordpress plugin developers]]></category>
		<category><![CDATA[san francisco wordpress theme developer]]></category>
		<category><![CDATA[wordpress expert]]></category>
		<category><![CDATA[wordpress plugin development]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=913</guid>
		<description><![CDATA[Anyone looking for San Francisco WordPress Consultants will be well served by contacting us at Red Bridge Internet. We have been quite active lately as WordPress Consultants for businesses and other firms in San Francisco and the surrounding Bay Area. This most recent work consisted of quick turn around professionally developed WordPress websites and WordPress [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-531" title="San Francisco WordPress Consultants" src="http://www.redbridgenet.com/wp-content/uploads/wordpress_logo-150x150.png" alt="San Francisco WordPress Consultants" width="100" height="100" />Anyone looking for <a title="San Francisco WordPress Consultants" href="http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/">San Francisco WordPress Consultants</a> will be well served by contacting us at <a title="Red Bridge Internet" href="http://www.redbridgenet.com/">Red Bridge Internet</a>. We have been quite active lately as WordPress Consultants for businesses and other firms in San Francisco and the surrounding Bay Area. This most recent work consisted of quick turn around professionally developed <a title="WordPress" href="http://www.wordpress.org">WordPress</a> websites and WordPress plugins. You can view our work on our <a title="Portfolio: Red Bridge Internet" href="http://www.redbridgenet.com/our-work/">Portfolio</a>.</p>
<p>As <a title="San Francisco WordPress Plugin Developers" href="http://www.redbridgenet.com/business/san-francisco-wordpress-plugin-developer/">San Francisco WordPress plugin developers</a> we are available for projects big, small, and anywhere in between. Please don&#8217;t hesitate to <a title="Contact Us : Red Bridge Internet" href="http://www.redbridgenet.com/contact-us/">contact us</a> if you are looking to speak with someone regarding WordPress Consulting services and plugin development in and around the San Francisco Bay Area. We will be more then happy to speak with you about your project, budget, and timeline for any WordPress website or plugin projects you are looking to kick-off.</p>
<p>If you are looking for a <a title="San Francisco WordPress Consultant" href="http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/">San Francisco WordPress Consultant</a> we look forward to <a title="Contact Red Bridge Internet" href="http://www.redbridgenet.com/contact-us/">hearing from you</a>!</p>
<h4>Incoming search terms:</h4><ul><li>san francisco wordpress consultants</li><li>san francisco wordpress consultant</li><li>_thumbnail_id wordpress</li><li>search with thumbnail results in wordpress</li><li>wordpress consulting</li><li>WordPress consultants Website Development San Francisco area</li><li>WordPress Consultants San Francisco bay area</li><li>wordpress consultants san francisco</li><li>san francisco wordpress consulting</li><li>San Francisco Area Word Press Consultants</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Move Your Website &#8211; Changing Domains</title>
		<link>http://www.redbridgenet.com/how-to/how-to-move-your-website-changing-domains/</link>
		<comments>http://www.redbridgenet.com/how-to/how-to-move-your-website-changing-domains/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 14:30:14 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=495</guid>
		<description><![CDATA[If you are changing domains because of a re-brand or for some reason aggregating content, you&#8217;ll need to make sure that the change is done flawlessly. Since Google is basically the end all and be all of search, I&#8217;ve consulted their resources. There are two basic links to review: Google Webmaster Central &#8211; Moving Your [...]]]></description>
			<content:encoded><![CDATA[<p>If you are changing domains because of a re-brand or for some reason aggregating content, you&#8217;ll need to make sure that the change is done flawlessly. Since Google is basically the end all and be all of search, I&#8217;ve consulted their resources. There are two basic links to review:</p>
<ul>
<li><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=83105">Google Webmaster Central &#8211; Moving Your Site</a></li>
<li><a href="http://googlewebmastercentral.blogspot.com/2008/04/best-practices-when-moving-your-site.html">Google Webmaster Central Blog &#8211; Best Practices When Moving Your Site</a></li>
</ul>
<p>The two links above are basically duplicate content (bad Google), but sometimes it helps to see things explained a couple different ways. The basic steps to take care of can be summed up as:</p>
<ol>
<li>Setup a Google <a href="http://www.google.com/support/webmasters/bin/topic.py?topic=8464">Webmaster Tools</a> Account and <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34592">Add New Site</a></li>
<li>Place .htaccess with 301 Permantent Redirects on old domain</li>
<li>Check your database and files for old domain mentions</li>
<li>Submit <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=78808">Sitemap</a> and a Google <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=83106">Change of Address</a> notification</li>
<li>Let her rip and monitor logs</li>
</ol>
<p>I&#8217;ve done this exercise twice now with (on the same domain no less) with no noticeable decline in search engine link positioning. I&#8217;m sure I&#8217;ll be doing this again sometime, so that&#8217;s the reason for the blog post. It&#8217;s basically for self reference for the next time I inevitably have to move a Web site to a new domain.</p>
<p>It took me about 3 days for Google to index a relatively new domain (21 days old).</p>
<p>Notes:</p>
<ul>
<li>Bing does not provide a Change of Address notification for their <a title="Bing Webmaster Tools" href="http://www.bing.com/toolbox/webmasters/?rfp=866799964">Bing Webmaster Tools</a></li>
</ul>
<p>Then, on March 09 we became #1 on the result for Red Bridge Internet&#8230; Put in the request to move March 01</p>
<h4>Incoming search terms:</h4><ul><li>bing how to move a site</li><li>moving google sites to joomla</li><li>moving a site to new domain</li><li>moving a domain bing webmaster</li><li>joomla change domain</li><li>joomla change adress website</li><li>joomla change address</li><li>how to change of address in bing webmaster</li><li>domain change of site bing webmaster</li><li>domain change in bing webmasters</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/how-to/how-to-move-your-website-changing-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really Really Good WordPress Developers</title>
		<link>http://www.redbridgenet.com/wordpress/really-really-good-wordpress-developers/</link>
		<comments>http://www.redbridgenet.com/wordpress/really-really-good-wordpress-developers/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 19:48:32 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bay area wordpress developer]]></category>
		<category><![CDATA[colusa county web development]]></category>
		<category><![CDATA[plugin development]]></category>
		<category><![CDATA[san francisco wordpress developer]]></category>
		<category><![CDATA[wordpress developers]]></category>
		<category><![CDATA[wordpress plugin development]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=902</guid>
		<description><![CDATA[I&#8217;ve found that one of the best ways to learn and improve upon writing plugins for WordPress is to review, learn from, and emulate the coding styles and best practices of really good WordPress Developers. As a community post and a personal resource I&#8217;ll list here some WordPress Developers that produce popular, well written, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found that one of the best ways to learn and improve upon writing plugins for WordPress is to review, learn from, and emulate the coding styles and best practices of really good WordPress Developers.</p>
<p>As a community post and a personal resource I&#8217;ll list here some WordPress Developers that produce popular, well written, and extremely useful plugins for the WordPress plugin community. Simply reviewing the plugins from this list of developers can go a long way in helping improve your own plugin writing.</p>
<p><strong><a href="http://profiles.wordpress.org/users/Viper007Bond/">Alex M. (Viper007Bond)</a><br />
</strong>(You can find my personal blog at <a href="http://www.viper007bond.com/">Viper007Bond.com</a>) I work for <a href="http://automattic.com/">Automattic</a> (the company behind <a href="http://wordpress.com/">WordPress.com</a>) doing VIP support and coding up random things. As you may notice below, I like writing WordPress plugins and can&#8217;t help writing more. I also contribute to the WordPress core from time to time. My most recent major contribution was the <a href="http://codex.wordpress.org/Embeds">native embeds feature</a>.</p>
<p><a href="http://profiles.wordpress.org/users/williamsba1/"><strong>Brad Williams</strong><br />
</a>Co-Founder of <a href="http://webdevstudios.com/">WebDevStudios.com</a> and Co-Author of <a href="http://w.illiams.com/professional-wordpress">Professional WordPress</a> and <a href="http://amzn.to/plugindevbook">Professional WordPress Plugin Development</a>.</p>
<p><strong><a href="http://profiles.wordpress.org/users/greenshady/">Justin Tadlock</a></strong><br />
I like WordPress. A lot. My base of operations is my personal blog, which is where you&#8217;ll find a lot of neat stuff about WordPress. Oh, and I run this neat community called <a href="http://themehybrid.com/">Theme Hybrid</a>. That&#8217;s where you&#8217;ll find my WordPress-theme stuff.</p>
<p><strong><a href="http://profiles.wordpress.org/users/markjaquith/">Mark Jaquith</a></strong><br />
I&#8217;m a Lead Developer on the WordPress core software. I&#8217;m a freelance WordPress consultant. You can find out more about me at <a href="http://markjaquith.com/">MarkJaquith.com</a>, or follow <a href="http://twitter.com/markjaquith">@markjaquith</a> on Twitter.</p>
<p><strong><a href="http://profiles.wordpress.org/users/ozh/">Ozh</a></strong><br />
I hack WordPress and do PHP stuff. Check <a href="http://ozh.org/">http://ozh.org/</a></p>
<p><strong><a href="http://profiles.wordpress.org/users/joostdevalk/">Joost de Valk</a> (Yoast)</strong><br />
I&#8217;m a WordPress / web developer, SEO and online marketer. Throughout my career I&#8217;ve worked at several companies, ranging from enterprise hosting to online marketing agencies, allowing me to work with several large businesses around the world, ranging from Dutch leaders as KPN and KLM to world leaders as eBay, RTL and Salesforce. I now work as a freelance consultant and developer, mostly working on large scale sites. If you want to know more, visit my <a href="http://yoast.com/">homepage</a>, <a href="http://twitter.com/yoast">follow me on Twitter</a> or <a href="https://plus.google.com/115369062315673853712">check my Google+ Profile</a>.</p>
<p>&nbsp;</p>
<p>This is of course very small and incomplete list of professional WordPress plugin developers. They are the authors of plugins I&#8217;ve personally used and have looked at therefore they make the list. Please feel free to send through comments WordPress plugin authors that you would also like to see on this list.</p>
<p>There&#8217;s also a couple fun pages showing the top WordPress plugin authors:</p>
<ul>
<li><a href="http://w-shadow.com/files/top-1000-plugin-authors.html">Top 1000 Plugin Authors</a></li>
<li><a href="http://www.themeflash.com/top-wordpress-plugin-developers-to-follow/">Top WordPress Plugin Developers to Follow</a></li>
</ul>
<h4>Incoming search terms:</h4><ul><li>wordpress</li><li>wordpress developers bay area</li><li>find wordpress developers</li><li>colusa county web development</li><li>wordpress developer bay area</li><li>wordpress logo</li><li>finding a wordpress developer</li><li>good wordpress developer</li><li>how to find a good wordpress developer</li><li>wordpress developer list</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/wordpress/really-really-good-wordpress-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word Camp San Francisco 2011</title>
		<link>http://www.redbridgenet.com/uncategorized/word-camp-san-francisco-2011/</link>
		<comments>http://www.redbridgenet.com/uncategorized/word-camp-san-francisco-2011/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 20:05:54 +0000</pubDate>
		<dc:creator>mgirliq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[word press event San Francisco]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=871</guid>
		<description><![CDATA[Red Bridge Internet attends Word Camp San Francisco. &#160; The overall consensus is that it&#8217;s better than last year! While it&#8217;s only day 2, our feedback is nothing short of positive. Are you an attendee? Any feedback? Please share with a comment below! Posted by mgirliq. Follow me on &#160;]]></description>
			<content:encoded><![CDATA[<p>Red Bridge Internet attends <a title="Word Camp San Francisco 2011" href="http://2011.sf.wordcamp.org/">Word Camp San Francisco</a>.</p>
<div id="attachment_878" class="wp-caption alignnone" style="width: 360px"><a href="http://www.redbridgenet.com/uncategorized/word-camp-san-francisco-2011/attachment/372154349/" rel="attachment wp-att-878"><img class="size-medium wp-image-878" title="372154349" src="http://www.redbridgenet.com/wp-content/uploads/372154349-290x484.jpg" alt="" width="350" height="583" /></a><p class="wp-caption-text">Line at Word Camp San Francisco, 2011</p></div>
<p>&nbsp;</p>
<p>The overall consensus is that it&#8217;s better than last year! While it&#8217;s only day 2, our feedback is nothing short of positive.</p>
<p>Are you an attendee? Any feedback? Please share with a comment below!</p>
<p>Posted by mgirliq. Follow me on <a href="https://twitter.com/mgirliq"><img src="data:image/png;base64,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" alt="" width="121" height="25" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/uncategorized/word-camp-san-francisco-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bay Area Website Seo and Development</title>
		<link>http://www.redbridgenet.com/business/bay-area-web-site-seo-and-development/</link>
		<comments>http://www.redbridgenet.com/business/bay-area-web-site-seo-and-development/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 19:53:34 +0000</pubDate>
		<dc:creator>mgirliq</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[bay area web site development]]></category>
		<category><![CDATA[bay area website development]]></category>
		<category><![CDATA[San Francisco web site development]]></category>
		<category><![CDATA[san francisco website development]]></category>
		<category><![CDATA[san francisco website seo]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=866</guid>
		<description><![CDATA[Red Bridge Internet Servicing the better bay area for all aspects of  your website development needs and SEO search engine optimization efforts. We can service the following regions with top notch response and delivery time. San Francisco website development, SEO Marin website development, SEO San Mateo website development, SEO East Bay website development, SEO Santa [...]]]></description>
			<content:encoded><![CDATA[<p>Red Bridge Internet</p>
<p>Servicing the better bay area for all aspects of  your <a title="What We Do" href="http://www.redbridgenet.com/what-we-do/">website development</a> needs and <a title="What We Do" href="http://www.redbridgenet.com/what-we-do/">SEO search engine optimization efforts</a>.</p>
<p>We can service the following regions with top notch response and delivery time.</p>
<ul>
<li>San Francisco website development, SEO</li>
<li>Marin website development, SEO</li>
<li>San Mateo website development, SEO</li>
<li>East Bay website development, SEO</li>
<li>Santa Clara website development, SEO</li>
<li>Bay Area website development, SEO</li>
</ul>
<div>
<p>Please <a title="Contact Us" href="http://www.redbridgenet.com/contact-us/">contact us today</a> if you are in need of a website development or SEO services</p>
</div>
<h4>Incoming search terms:</h4><ul><li>marin seo</li><li>san francisco seo</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/business/bay-area-web-site-seo-and-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restricted Site Access Plus</title>
		<link>http://www.redbridgenet.com/plugins/restricted-site-access-plus/</link>
		<comments>http://www.redbridgenet.com/plugins/restricted-site-access-plus/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 16:55:37 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=861</guid>
		<description><![CDATA[I don&#8217;t provide this plugin for public download (it&#8217;s still too customized to be made publicly available). If you need access to the files or just have questions just contact me and I&#8217;ll try and help.]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t provide this plugin for public download (it&#8217;s still too customized to be made publicly available). If you need access to the files or just have questions just <a href="http://www.redbridgenet.com/contact-us/">contact me</a> and I&#8217;ll try and help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/plugins/restricted-site-access-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

