Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter vachi

    (@vachi)

    i am sorry for bumping it, but its been some time now i hope i am not getting in trouble, (like always) for bumping 🙂

    i thought i some ways of doing this but still no luck, any one have any ideas?

    Michael Torbert

    (@hallsofmontezuma)

    WordPress Virtuoso

    It outputs it literally because NextGen only looks into the post’s content.

    This may work…
    apply_filters(‘the_content’,
    http://codex.wordpress.org/Function_Reference/apply_filters

    <?php $gallery = get_post_meta($post->ID, 'gallery', true); ?>
    <?php
    	$gal = '[gallery='.$gallery.']';
    	$gal = apply_filters('the_content', $gal );
    	echo $gal;
    ?>

    My code for my site 😛

    Thread Starter vachi

    (@vachi)

    works perfect krickett, tx alot i read up on the apply_filters, tx hallsofmontezuma

    hallsofmontezuma –> i also checked out your site, nicely done, i like the nice big visible buttons clean web2.0 feel of it

    resolved tx people

    Thank you for this!

    Thanks!

    Thank You!!

    Thanks, this is exactly what I was looking for!

    mmoran0226

    (@mmoran0226)

    This is why the WordPress community is the best!!! BUMP BUMP BUMP. I struggled with this for two days now before I found this thread. Works perfect.

    I wasn’t having the exact same problem, because i had found a way to call the slideshow, but the images in my slideshows were switching back and forth and it was really getting annoying. This fixed the call and prevents duplicates somehow too.

    THANK YOU THANK YOU THANK YOU

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘[Plugin: NextGEN Gallery] using Custom Fields to show gallery ID’ is closed to new replies.