Postingan lainnya
cara mengambil parameter di dalam post type wordpress
mau tanya gan.. maap kalau salah judul.. ane baru belajar buat theme wordpress :) bagaimana cara mengambil gambar,atau link didalam sebuah post.. dalam hal ini ane menggunakan post type galery pada worpdress.. nah didalam post itu contoh : ada 3 gambar.. bagaimana Wp_query nya kalau kita mau mengintegrasikan 3 gambar itu dengan carousel bootstrap..? atau simpelnya bagaimana mengambil parameter 3 gambar itu..? biar bisa diklik untuk memperbesar atau bisa dibuat slide shownya tanpa plugin..
#edit atau bisa dibilang bagaimana cara mengambil url image yang ada dalam post type itu gan.. mohon bimbingannya :)
ini script content-galery.php
<div class="col-md-4" >
<div class="thumbnail"id="content-wrapp">
<!--thumbnails-->
<?php the_post_thumbnail(); ?>
<!--end-->
<div class="caption" id="caption-post">
<!--tittle-->
<h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<!--end-->
</div>
<!--excerpt-->
<p><?php echo get_the_excerpt();?></p>
<p>
<a class="btn btn-primary"href="<?php the_permalink();?>">Preview</a>
<a class="btn btn-default"href="<?php the_permalink();?>">Download</a>
</p>
<!--end-->
</div>
</div>
ini script single.php
<!-- header-->
<?php get_header(); ?>
<!-- end-->
<!-- content-->
<?php
if(have_posts()):
while(have_posts()):the_post();?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<p><?php the_content();?></p>
<?php endwhile;
else:echo "Not Found";
endif;
?>
<!-- end-->
<!-- header-->
<?php get_footer(); ?>
<!-- end-->
0