Hi I'm trying to use this plugin: http://wordpress.org/extend/plugins/wordpress-simple-website-screenshot/
I am supposed to use the shortcode: [screenshot url="www.example.com"]
Because I am writing the code in the single.php file I am using:
<?php echo do_shortcode( '[screenshot url="www.example.com"]' ); ?>
But, my problem is that the URL is defined in the title of the post, so I tried:
<?php echo do_shortcode( '[screenshot url="<?php the_title(); ?>"]' ); ?>
with no luck.
Is it possible to do a workaround on this?

<?php echo do_shortcode( '[expand title="'.the_title().'"]'.the_content().'[/expand]'); ?>– user4561 Apr 10 '11 at 1:04