我希望在我的wordpress滑块上有帖子标题而不是帖子文字,但是当我将the_post改为the_title时出错了。
<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()?>&h=300&w=650&zc=1" title="" alt="" /></a>
<div class="flex-caption">
<?php wpe_excerpt('wpe_excerptlength_slide', ''); ?>
</div>
</li>
<?php endwhile; ?>
</ul>
我的网页的网址是:http://soccerway.ge/
提前谢谢
答案 0 :(得分:0)
我假设您已尝试将$slide_query->the_post()
更改为$slide_query->the_title()
这不会起作用,不会以这种方式修改The Loop。
你真正想要做的事情(我认为,你的问题并不清楚)是将the_title
拉入flex-caption div而不是摘录(这是摘录全文)大概是因为没有明确设定摘录。)
<div class="flex-caption">
<?php the_title(): ?>
</div>