<?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>Sat, 28 Apr 2012 06:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The Amazing Simplicity of a Pinterest Email</title>
		<link>http://www.redbridgenet.com/blogging/the-amazing-simplicity-of-a-pinterest-email/</link>
		<comments>http://www.redbridgenet.com/blogging/the-amazing-simplicity-of-a-pinterest-email/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 06:00:19 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=988</guid>
		<description><![CDATA[I was finally moved to &#8220;Request an Invite&#8221; at Pinterest this evening and when I received the initial email I was amazed at how simple it really was. I mean, this coming from the fastest growing social network ever. It goes to show, not everything needs to be over designed. In fact, it looks like [...]]]></description>
			<content:encoded><![CDATA[<p>I was finally moved to &#8220;Request an Invite&#8221; at <a href="http://pinterest.com" title="Pinterest">Pinterest</a> this evening and when I received the initial email I was amazed at how simple it really was. I mean, this coming from the <a href="http://techcrunch.com/2012/02/07/pinterest-monthly-uniques/" title="Pinterest Hits 10 Million U.S. Monthly Uniques Faster Than Any Standalone Site Ever -comScore">fastest growing social network ever</a>. It goes to show, not everything needs to be over designed. In fact, it looks like in order to become the fast growing site around you may just want to send your customers simple text emails that look like this:</p>
<div id="attachment_989" class="wp-caption aligncenter" style="width: 577px"><img src="http://cdn.redbridgenet.com/wp-content/uploads/pinterest-email.png" alt="Thanks for Joining the Pinterest Waiting List" title="Thanks for Joining the Pinterest Waiting List" width="567" height="413" class="size-full wp-image-989" /><p class="wp-caption-text">Thanks for Joining the Pinterest Waiting List</p></div>
<p>I don&#8217;t know how much I&#8217;ll ever use Pinterest the social network, but I will be coming back to this post everytime I&#8217;m banging my head against the keyboard thinking that even my emails need to be stylized.</p>
<h4>Incoming search terms:</h4><ul><li>pinterest waiting list may 2012</li><li>ed reckers facebook</li><li>php pinterest email</li><li>pinterest waiting list april 2012</li><li>scrolldeck doesn\t react</li><li>scrolldeck in wordpress</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/blogging/the-amazing-simplicity-of-a-pinterest-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Function to Wrap print_r in &lt;pre&gt; Preformatted Text Tag</title>
		<link>http://www.redbridgenet.com/development/print_pre-php-function-to-wrap-print_r-in-pre-preformatted-text-tag/</link>
		<comments>http://www.redbridgenet.com/development/print_pre-php-function-to-wrap-print_r-in-pre-preformatted-text-tag/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 18:40:47 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=970</guid>
		<description><![CDATA[Finally got tired of manually wrapping print_r in &#60;pre&#62; tags so I&#8217;m just going to drop this here for future reference: // wrap print_r in preformatted text tags // usage: print_pre($value) function print_pre&#40;$value&#41; &#123; echo &#34;&#60;pre&#62;&#34;,print_r&#40;$value, true&#41;,&#34;&#60;/pre&#62;&#34;; &#125; Basically, using print_pre (if the name doesn&#8217;t collide w/ another function in your program) will work just [...]]]></description>
			<content:encoded><![CDATA[<p>Finally got tired of manually wrapping print_r in &lt;pre&gt; tags so I&#8217;m just going to drop this here for future reference:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// wrap print_r in preformatted text tags </span>
<span style="color: #666666; font-style: italic;">// usage: print_pre($value)</span>
<span style="color: #000000; font-weight: bold;">function</span> print_pre<span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;pre&gt;&quot;</span><span style="color: #339933;">,</span><span style="color: #990000;">print_r</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&lt;/pre&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Basically, using print_pre (if the name doesn&#8217;t collide w/ another function in your program) will work just like print_r except of course wrap the output in preformatted text tags &lt;pre&gt;.</p>
<p>I do a lot of work in WordPress so if you can just drop this into your functions.php file if you&#8217;d like to use it. The same goes for Drupal, add it to your themes file for easy access. Another option I supposed would be to prepend it to your PHP documents but I&#8217;m just speculating right now and that could turn out not so good.</p>
<p>Anyways, print_pre can be used in place of print_r to dump output of print_r pre wrapped in pre tags.</p>
<p>References:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/3785214/shortcut-for-echo-preprint-rmyarrayecho-pre">Shortcut for echo “&lt;pre&gt;”;print_r($myarray);echo “&lt;/pre&gt;”;</a></li>
<li><a href="http://php.net/manual/en/function.print-r.php">PHP print_r</a></li>
</ul>
<p>This is probably the better long term solution:</p>
<ul>
<li><a href="http://wordpress.stackexchange.com/questions/40952/nice-way-to-print-r-arrays" title="Nice way to print_r arrays">Nice way to print_r arrays</a></li>
</ul>
<h4>Incoming search terms:</h4><ul><li>print_r wordpress</li><li>how to get the values in print_r</li><li>print_r with pre tags</li><li>print_r preformated</li><li>print_r pre tags</li><li>print_r</li><li>preformatted text in php</li><li>preformatted php</li><li>pre php</li><li>pre in php</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/development/print_pre-php-function-to-wrap-print_r-in-pre-preformatted-text-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I Broadcast my WordPress Blog Posts to Twitter</title>
		<link>http://www.redbridgenet.com/wordpress/how-i-broadcast-my-wordpress-blog-posts-to-twitter/</link>
		<comments>http://www.redbridgenet.com/wordpress/how-i-broadcast-my-wordpress-blog-posts-to-twitter/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 20:06:40 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=968</guid>
		<description><![CDATA[There are a number of WordPress Plugins that appear to allow you to auto-post your WordPress blog posts to Twitter, Facebook, and LinkedIn. However, I am going with a service called dlvr.it to help me post my WordPress blog posts to Twitter. It&#8217;s a simple matter of adding your source, in this case your WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of WordPress Plugins that appear to allow you to auto-post your WordPress blog posts to Twitter, Facebook, and LinkedIn. However, I am going with a service called <a href="http://dlvr.it" title="dlvr.it">dlvr.it</a> to help me post my WordPress blog posts to Twitter.</p>
<p>It&#8217;s a simple matter of adding your source, in this case your WordPress Feed, and then adding and authorizing your destination account, which would be Twitter.</p>
<p>The UI is pretty straight forward and it allows you to forgo loading another WordPress Plugin to simply allow you to feed your blog posts to your Twitter account.</p>
<h4>Incoming search terms:</h4><ul><li>broadcast wordpress on facebook</li><li>wordpress broadcast to facebook and twitter</li><li>wordpress broadcast post</li><li>wordpress broadcast</li><li>wordpress auto postear facebook</li><li>wordpress auto post to twitter</li><li>twitter feed wordpress broadcast</li><li>twitter feed in wordpress</li><li>plugin wordpress broadcast post</li><li>wordpress twitter broadcast and comment</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/wordpress/how-i-broadcast-my-wordpress-blog-posts-to-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Toggle Open Your WPtouch Menu on the Front Page</title>
		<link>http://www.redbridgenet.com/wordpress/how-to-toggle-open-your-wptouch-menu-on-the-front-page/</link>
		<comments>http://www.redbridgenet.com/wordpress/how-to-toggle-open-your-wptouch-menu-on-the-front-page/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 04:29:53 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress code snippets]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress snippets]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=962</guid>
		<description><![CDATA[Per client request I was asked that the WPtouch menu default to toggled open when on the frontpage . There may be more elegant solutions, but in order to achieve this I ended up editing a single WPtouch plugin file. If you&#8217;re going to do this make sure your code is in version control so [...]]]></description>
			<content:encoded><![CDATA[<p>Per client request I was asked that the WPtouch menu default to toggled open when on the frontpage . There may be more elegant solutions, but in order to achieve this I ended up editing a single WPtouch plugin file. If you&#8217;re going to do this make sure your code is in version control so that you can easily identify and add back the changes after any plugin update.</p>
<p>Now, to update WPtouch to start with an expanded menu on your homepage/frontpage open header.php for the WPtouch theme that you are using. In my case:</p>
<p style="padding-left: 30px;">themes/classic/iphone/header.php</p>
<p>Around line 64 is the menu containing div id, <strong>id=&#8221;main-menu&#8221;</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- This brings in menu.php // remove it and the whole menu won't show at all --&gt;
            <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> wptouch_has_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;div id=&quot;main-menu&quot; class=&quot;closed&quot;&gt;
                    &lt;!-- The Hidden Search Bar --&gt;</pre></div></div>

<p>What you&#8217;ll want to do is add an if statement checking for <strong>is_front_page</strong> and if true you&#8217;ll go ahead and add a style to display, <strong>style=&#8221;display: block;&#8221;</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- This brings in menu.php // remove it and the whole menu won't show at all --&gt;
            <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> wptouch_has_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_front_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;div id=&quot;main-menu&quot; class=&quot;closed&quot; style=&quot;display: block;&quot;&gt;
                <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;div id=&quot;main-menu&quot; class=&quot;closed&quot;&gt;
                <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                    &lt;!-- The Hidden Search Bar --&gt;</pre></div></div>

<p>That should do it.</p>
<p>Editing header.php of your chosen WPtouch mobile theme as seen above should get you an expanded menu (if you&#8217;re using the menu) on front-page visits.</p>
<h4>Incoming search terms:</h4><ul><li>responsive menu toggle</li><li>wptouch menü</li><li>wptouch change page id order</li><li>open the menu in wp touch</li><li>wptouch menu change order</li><li>wptouch</li><li>wptouch add menu</li><li>wp-touch page ids</li><li>wptouch change order of items</li><li>wp-touch open login</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/wordpress/how-to-toggle-open-your-wptouch-menu-on-the-front-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AXIS Santa Clara Restaurant and Lounge Launches New Site</title>
		<link>http://www.redbridgenet.com/business/axis-santa-clara-restaurant-and-lounge-launches/</link>
		<comments>http://www.redbridgenet.com/business/axis-santa-clara-restaurant-and-lounge-launches/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 20:38:36 +0000</pubDate>
		<dc:creator>Ed Reckers</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.redbridgenet.com/?p=942</guid>
		<description><![CDATA[AXIS, Santa Clara&#8217;s newest, Restaurant, Lounge, Nightclub, and Event Center opens for business this upcoming weekend. This is a description of their establishment from the Axis website: AXIS Santa Clara&#8217;s newest Restaurant, Lounge, Nightclub, &#38; Event Space. With 12,000 square feet, two patios, and three different rooms, each with its own unique feel, AXIS is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.everythingaxis.com"><img class="alignleft size-thumbnail wp-image-955" title="Axis Restaurant Lounge Nightclub Event Center" src="http://cdn.redbridgenet.com/wp-content/uploads/axis-logo-100x100.png" alt="Axis Restaurant Lounge Nightclub Event Center" width="100" height="100" /></a><a title="Axis" href="http://www.everythingaxis.com">AXIS</a>, Santa Clara&#8217;s newest, Restaurant, Lounge, Nightclub, and Event Center opens for business this upcoming weekend.</p>
<p>This is a description of their establishment from the Axis website:</p>
<p><a href="http://www.everythingaxis.com">AXIS Santa Clara&#8217;s newest Restaurant, Lounge, Nightclub, &amp; Event Space</a>. With 12,000 square feet, two patios, and three different rooms, each with its own unique feel, <a href="http://www.everythingaxis.com">AXIS</a> is truly one of a kind. <a href="http://www.everythingaxis.com">AXIS</a> combines great Food, Drink, and Music to create a unique retro vibe.</p>
<p>Congratulations to <a href="http://www.everythingaxis.com">AXIS</a> on their new launch websites and for opening in beautiful Santa Clara.</p>
<h4>Incoming search terms:</h4><ul><li>axis lounge santa clara</li><li>axis nightclub santa clara</li><li>axis santa clara</li><li>axis nightclub in santa clara</li><li>axis restaurant santa clara</li><li>axis nightclub santa clara ca</li><li>axis nightclub santa clara april 13</li><li>axis nightclub events in santa clara</li><li>Axis Restaurant &amp; Lounge Santa Clara</li><li>axis santa clara nightclub</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/business/axis-santa-clara-restaurant-and-lounge-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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://cdn.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>wordpress change user role thru script</li><li>change user role wordpress</li><li>san francisco wordpress developer</li><li>update role wordpress</li><li>update user in wordpress</li><li>wordpress _thumbnail_id</li><li>Word press development San Francisco</li><li>update user wordpress</li><li>script php member update post wordpress</li><li>script to change role in wordpress</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>wordpress developers san francisco</li><li>san francisco wordpress theme</li><li>wordpress red bridge theme</li><li>WordPress Theme Developer san francisco</li><li>wordpress theme san fransisco</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 webdesign presentationslidesjs on joomlaslides js responsive web designslide presentation on web designingjoomla responsiveslides jsresponsive slides js with joomlaresponsive [...]]]></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 webdesign presentation</li><li>slidesjs on joomla</li><li>slides js responsive web design</li><li>slide presentation on web designing</li><li>joomla responsiveslides js</li><li>responsive slides js with joomla</li><li>responsive slides js</li><li>responsive slide presentation</li><li>responsive design decks</li><li>slidesjs responsive design</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>how can you find websites on a server</li><li>find sites hosted on server</li><li>how to identify by domain shared host</li><li>php list IP of shared host</li><li>find websites hosted on server</li><li>find sites hosted on ip</li><li>sites hosted on</li><li>sites hosted on this server</li><li>how to find hosted websites</li><li>how to determine what server a website address is hosted on</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://cdn.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>_thumbnail_id wordpress</li><li>web design and seo development red bridge</li><li>bay area wordpress consultant</li><li>bay area wordpress consultants</li><li>how to get post by thumbnailid in wordpress</li><li>wordpress experts in bay area</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.redbridgenet.com/business/san-francisco-wordpress-consultants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: S3: cdn.redbridgenet.com

Served from: www.redbridgenet.com @ 2012-05-18 20:08:21 -->
