-1

すべての投稿をループして、1 分ごとに抜粋、タイトル、注目の画像を含む 1 つの投稿を表示することはできますか? あらゆる広告のように。彼らは 1 つの広告を表示していて、一定期間変化し続けています。

ティア!

4

1 に答える 1

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>       
于 2013-07-02T09:06:45.927 に答える