是否可以循环播放所有帖子,并且每分钟显示一个带有摘录,标题和精选图片的帖子?就像任何广告一样。他们正在展示一个广告,并且在一段时间内不断变化。
TIA!
答案 0 :(得分:0)
pest code when you define your banner post:
index.php(您在页面上定义代码定义名称并替换 的index.php)
<script type="text/javascript">
setInterval(function(){
$('#load_tweets').load('index.php #load_tweets', function() {
$('#load_tweets').fadeOut('fast').load('mybanner.php').fadeIn("slow");
});
},60000);
</script>
<?php require_once (TEMPLATEPATH . '/mybanner.php'); ?>
mybanner.php
<div id="load_tweets">
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 1));
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?>
<?php endwhile;
endif; ?>
</div>