I wanna be able to call on the gallery ID from the custom field area
meaning i have a custom field called gallery, in there i write [gallery=74]
than in the loop i want to show the gallery specified by that id
the code i have right now is
<div class="actor_gallery"><?php $gallery = get_post_meta($post->ID, 'gallery', true); ?><?php echo $gallery ?></div>
but this gives me a simple text output ([gallery=74])
any ideas on how this can be done?
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?
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
Anonymous
Unregistered
Posted 11 months ago #
<?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 :P
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
alkafy
Member
Posted 9 months ago #
enoyad
Member
Posted 7 months ago #
viter-z-bayraku
Member
Posted 4 months ago #
betadog
Member
Posted 3 months ago #
Thanks, this is exactly what I was looking for!
mmoran0226
Member
Posted 3 months ago #
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