无法将滑块文本更改为滑块标题


<ul class="slides">
    <?php 
        $slide = get_option('cany_slide_cat');
        $count = get_option('cany_slide_count');
        $slide_query = new WP_Query( 'category_name='.$slide.'&posts_per_page='.$count.'' );
        while ( $slide_query->have_posts() ) : $slide_query->the_post();
  $do_not_duplicate[] = $post->ID 
    ?>  
    <li>
    <a href="<?php the_permalink() ?>"><img class="slideimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo get_image_url()?>&amp;h=300&amp;w=650&amp;zc=1" title="" alt="" /></a>
    <div class="flex-caption">
    <?php wpe_excerpt('wpe_excerptlength_slide', ''); ?>
    </div>
    </li>
    <?php endwhile; ?>
    </ul>

我想在wordpress滑块上显示文章标题,而不是文章文本,但当我将_post更改为_title时,出现了问题。

我的网页是:http://soccerway.ge/

提前感谢

您可以通过更新来做到这一点;

<div class="flex-caption">
<?php wpe_excerpt('wpe_excerptlength_slide', ''); ?>
</div>

<div class="flex-caption">
<?php the_title( '<h2>', '</h2>' ); ?>
</div>

这将把当前的文章标题放在每个文章的

相关内容

  • 没有找到相关文章

最新更新