Thank you very much for this cool plugin. It really is perfect! Because many of my posts use a lot of tags, the related tweets are not really related anymore. Therefor I would like to set some extra tags in the custom field. I did it the following way:
<?php if( get_post_meta($post->ID, "twitter", true)
<?php
tweet_blender_widget(array(
'unique_div_id' => 'tweetblender-t1',
'sources' => 'echo get_post_meta($post->ID, "twitter", true);',
'refresh_rate' => 60,
'tweets_num' => 5,
)); ?>
<?php endif; ?>
So in the source I called echo get_post_meta($post->ID, "twitter", true); to get the tags set in the customfield. But this is obviously not the correct way to call it in an array. Could someone help me out with some php tips..?