I using Carbon Fields in WordPress. I have a problem, beacause I can not show media gallery. My code in functions.php
function crb_attach_post_meta_aboutus() {
Container::make( 'post_meta', __( 'Singlebramy', 'single' ) )
->where( 'post_type', '=', 'dla-domu' )
->add_fields( array(
Field::make( 'media_gallery', 'crb_media_gallery', 'Galeria' )
->set_type( 'image' )
));
}
I tried use foreach but not work. Please help me.
2
Answers
Ok, I found answer on my questions. I used foreach and wp_get_attachment_url(), below I added a code snippet with a solution to the puzzle.
This is a snippet code with bootstrap carousel :)
To display media gallery in Carbon fields: