Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a custom post type for creating gallery posts. One of the things I took out was the 'editor' section since I have my own uploader. Since the HTML editor is gone (can't use shortcodes now), is there a wp function which is the equivalent of the [gallery] shortcode?

share|improve this question
Note to mods: this question would be a better fit for WPSE. – Chip Bennett Apr 18 '12 at 15:42

3 Answers

up vote 0 down vote accepted

As per the Codex recommendation for outputting the [gallery] shortcode content directly in a template file, I would use do_shortcode():

<?php do_shortcode( '[gallery]' ); ?>

You can even pass accepted parameters:

<?php do_shortcode( '[gallery columns="4" size="medium"]' ); ?>
share|improve this answer
Oohhh, this is much, much better. – enchance Apr 18 '12 at 17:03

Got it. Here's the code for anyone else who wants to do the same thing. Throw this baby in your theme template file and try it out.

$images = get_children(array('post_parent'=>$post->ID, 'post_type'=>'attachment', 'post_mime_type' => 'image'));
foreach($images as $image){
    echo wp_get_attachment_link($image->ID);
}
share|improve this answer

You can use the wordpress function make for this purpose

gallery_shortcode(array('orderby'=>ID));

by sure to call this after you setup the post

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.