Cali Lewis: Building a Vibrant Community

Great info from someone that has been apart of a team that built a vibrant community. 7 rules for building a vibrant community strait from the horse’s mouth. I’m barely scraping the surface here, but here are the highlights.

Point 1: Core Branding Value
- “Know your brand, know your audience.”

Point 2: Start Compelling Conversations

Point 3: Be an Asset: Add Value!

Point 4: Make friends, not fans.
- “Listen to your community, but don’t be changed by your community.”

Point 5: Show Appreciation.
- “Show appreciation, hit the reply button. Do it.”

Point 6: Take Breaks!
- “Give your audience a chance to miss you.”

Point 7: Always be Upgrading!
- “Kubrick is ok! Start, then upgrade.”

For more on Cali, visit her blog or at geekbrief.tv

Posted in wcdfw09 | Tagged , , , | View Comments

Tony Cecala: Turbocharge Your Career with WordPress

Some highlights from Tony C’s talk.

The wordpress advantage.

Stable.
Mature.
Good-Looking.
Open.
Extensible.
Own your own data.
Dominate the search engines.
Easily Manage Multimedia.
Easily Manage External Data.

To see the full slideshow, Tony C has kindly added it to Slideshare.net already.

Posted in wcdfw09 | Tagged , , | View Comments

WCDFW09 Introductions

John P kicking off the weekend…

And Tony C taking the stage.

They have a RSS that is pulling in the hash tag: wcdfw09 from twitter and flickr so check that out for more coverage.

Twitter wcdf09

flickr wcdfw09

Posted in wcdfw09 | Tagged , | View Comments

Wordcamp Dallas/Ft. Worth 2009

I’m super excited to have a spot to this years sold out wordcamp dfw . I’m going to try and post some cool things I come across as it happens. Yay iPhone + WP app…

I’ve never been to wordcamp so I have no idea what to expect at all.

I’ve never done mobile coverage of an event before either, so I have no idea what to expect there either.

Should be an interesting weekend, come say hi, I’d love to meet you if you are here. You can find me on Twitter @m_a_simo too.

Stay tuned!

Posted in news, personal, wordpress | Tagged , , , | View Comments

Query Post by a Variable?

Howdy, I hope someone will see this and possibly know a solution to what I’m trying to do…

So, I’m trying to pull a custom field and setting the result as $sortingTag I’m then trying to query_posts looking in a particular category and by a certain tag.

Here is the code I’m using:

<?php if ( (is_page('web')) or (is_page('print')) or (is_page('identity')) ) {

$sortingTag = get_post_meta($post->ID, 'sorting-tag', true);		

query_posts(array(
	'cat'=>17,
	'showposts'=>15,
	'tag'=>"$sortingTag",
));
?>

Here is how I’m trying to implement it:

I’ve set up child pages ‘web’, ‘identity’, & ‘print’ under the parent ‘Portfolio’. On each page I’ve set a custom field with the key ‘sorting-tag’ with it’s respective page name (i.e. web for web).

And I’m using posts to hold my portfolio pieces, depending on the project each could have one or more of the tags ‘web’, ‘identity’, or ‘print’ (spelled the same, with same case).

Now my problem, I figure I’d be able to pass the custom field and search by that value for the post tags. But it isn’t populating the loop at all, I do get a populated loop when I change ‘tag’ to ‘tag_slug’ but it still isn’t changing the query results, it is as if they are still unfiltered..

Anyone have any help or run into this before? I’d love to sort this out… lol sort. Get it?!? Haha, sorry, couldn’t help myself…

But seriously, little help… and if you could pass this on to your wordpress guru’s that’d be sweet too.

Posted in Site Development, personal, wordpress | Tagged , , , | View Comments