Hmmm. I had it sort of working, but somehow screwed it up. I used this snip of code I found:
<?php $gallery = get_post_meta($post->ID, ‘gallery’, true); ?>
<?php
$gal = $gallery;
$gal = apply_filters(‘the_content’, $gal );
echo $gal;
?>
Made a custom field with a 'gallery' key and a value of [imagebrowser id=x]. This is my page.php loop:
<div id="block_content">
<?php query_posts('category_name=arrangementer'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="content">
<div class="text_content">
<?php $gallery = get_post_meta($post->ID, ‘gallery’, true); ?>
<?php
$gal = $gallery;
$gal = apply_filters('the_content', $gal );
echo $gal;
?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small>on <?php the_time('M d'); ?> in <?php the_category(', '); ?> tagged <?php the_tags(''); ?> by <?php the_author_posts_link(); ?></small>
<ingress><?php the_excerpt(); ?></ingress>
<p><?php the_content(); ?></p>
</div>
</div>
<?php endwhile ?>
Any advice is most welcome please.
Morten