<?php gallery(); ?>
<div class="gallery">
<img src="" class="" width="" height="" alt="">
<img src="" class="" width="" height="" alt="">
<img src="" class="" width="" height="" alt="">
<img src="" class="" width="" height="" alt="">
<img src="" class="" width="" height="" alt="">
</div>
add_shortcode('custom_gallery', 'custom_gallery_func');
function custom_gallery_func( $atts ) {
extract( shortcode_atts( array(
'count' => '' // параметры, если нужны
), $atts ) );
// ваш код галереи, подключение внешнего файла
// можно использовать буфер ob_start(); а затем возвращать $content = ob_get_clean();
}
<?php echo do_shortcode( '[custom_gallery]' );