最新のを投稿するには、wordpressでギャラリーを作成する必要があります。投稿はです。ギャラリーには、ポストのタイトルとポストの一部(wordpressの--more--タグの前にある段落)のポストのイメージが表示されます。ギャラリーに新しい投稿を追加したときだけ動的にする必要があります。 Wordpressでコンテンツスライダを作成する方法
はよく私は、最新の3件の記事を表示するには、次のコード<div class="blogsgallery">
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<p>
<h3>
<a href="<?php the_permalink() ?>"
rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a>
</h3>
</p>
<div class="entry-content">
<div id="post-thumbnail">
//the size of thumbnail 150X150 px
<?php the_post_thumbnail(array(150,150)); ?>
</div>
//The code will show only the text before the "Read More ..." tag !
<?php
global $more;
$more = 0;
the_content("Read More ...");
?>
</div>
<?php endwhile; ?>
</div>
にこのループをしました。スライダーコンテナにする必要があります。特定の時間の後、すなわち1分、など左、ショースライド2に1点の移動をスライドさせ...
詳しくは写真を参照してください:最も簡単な解決策があるに
リンク:[クエリーポスト(http://codex.wordpress.org/Function_Reference/query_posts)[ループ](http://codex.wordpress.org/The_Loop)template_tags]( http://codex.wordpress.org/Template_Tags)[ページテンプレートの作成](http://codex.wordpress.org/Pages#Page_Templates) – Brtrnd
ありがとう...しかし、私はどのように投稿のギャラリーをすることができますか?純粋なhtmlの場合は –
です。それを静的ファイルとして作成します。この後、あなたのループがどのようにフィットするかを見なければなりません。 – Brtrnd