سلام
من تو سایتم قسمتی به نام ترکیبات گالری دارم ولی کار نمی کنه.به نظرم به زمینه های دلخواه ربط داره
لینک سایت: http://www.ehsanaminy.com
اینم کد این قسمت. ببینید ازش می تونید بفهمید چجور میشه استفاده کرد؟
<?php
// User-defined variables
$cat_name = false;
$tag_name = 'features';
$posts_wanted = 3;
// Query the posts
if($cat_name == true) $query_var = cleaner_query('category', $cat_name);
elseif($tag_name == true) $query_var = cleaner_query('tag', $tag_name);
query_posts("$query_var&showposts=$posts_wanted");
?>
<script type="text/javascript">
function startGallery() {
var myGallery = new gallery($("myGallery"), {
timed: true,
delay: 6000,
showArrows: true,
showCarousel: false
}); }
window.onDomReady(startGallery);
</script>
<div id="myGallery" class="section">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="imageElement">
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php limit_content(175,''); ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="open"></a>
<?php echo get_the_image(array('Feature Image','Full','Feature Full'), 'full'); ?>
</div>
<?php endwhile; endif; wp_reset_query(); ?>
</div>