Red Bridge Internet is a San Francisco WordPress Consulting firm specializing in WordPress websites and WordPress Plugin Development. We're the ones you have been searching for.

Development & Distribution

We develop custom websites and applications then optimize them for search. That's What We Do. Explore Our Work and Who We Are or if the mood should strike you, Read Our Blog and Contact Us today: 415.857.5745

RC Blackwell's Tax Service MBV Law Nokia in Silicon Valley
Platform Event Services Dazzle Postage Application Mimi Boutique
View Our Work

Our Broadleaf Marketing Programs

Our Search Engine and Social Media Marketing program.

We've developed a program for Web site owners which handle all components of Internet Marketing. Imagine hands-off, fully reported Search Engine Optimization, Search Engine Marketing (Paid Search Management), and Social Media Marketing - professionally managed for a simple monthly payment.

Contact Us Today

Complete this form to talk to us today.

Red Bridge Blog

The Amazing Simplicity of a Pinterest Email

I was finally moved to “Request an Invite” 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 in order to become the fast growing site around you may just want to send your customers simple text emails that look like this:

Thanks for Joining the Pinterest Waiting List

Thanks for Joining the Pinterest Waiting List

I don’t know how much I’ll ever use Pinterest the social network, but I will be coming back to this post everytime I’m banging my head against the keyboard thinking that even my emails need to be stylized.

PHP Function to Wrap print_r in <pre> Preformatted Text Tag

Finally got tired of manually wrapping print_r in <pre> tags so I’m just going to drop this here for future reference:

// wrap print_r in preformatted text tags 
// usage: print_pre($value)
function print_pre($value) { 
    echo "<pre>",print_r($value, true),"</pre>";
}

Basically, using print_pre (if the name doesn’t collide w/ another function in your program) will work just like print_r except of course wrap the output in preformatted text tags <pre>.

I do a lot of work in WordPress so if you can just drop this into your functions.php file if you’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’m just speculating right now and that could turn out not so good.

Anyways, print_pre can be used in place of print_r to dump output of print_r pre wrapped in pre tags.

References:

This is probably the better long term solution:

How I Broadcast my WordPress Blog Posts to Twitter

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’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.

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.