How can I add a gallery shortcode to the content in Wordpress from within my functions.php code? The numbers I'm using here are hard-coded for trial but will eventually be dynamic. Here is what I'm trying but doesn't seem to work.
add_filter( 'the_content', 'wpse6034_the_content' );
function wpse6034_the_content( $content )
{
$gallery_shortcode = '[gallery ids="282,283,284"]';
$content .= '<p>Hello World!!!!</p>'.$gallery_shortcode;
return $content;
}