如何在Wordpress中创建内容滑块

时间:2012-03-25 11:37:34

标签: wordpress wordpress-theming

我需要在wordpress中创建一个图库,以显示最新的 3个帖子。画廊将显示帖子的图像,其中包含帖子的标题和帖子的一部分(之前的段落 - 更多 - 在wordpress中的标签)。当我在画廊中添加一个新帖子时,我需要它是动态的。

我做了以下代码

<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>

这是一个显示最新3个帖子的循环。我需要把它变成一个滑块容器。在特定时间之后,即1分钟,幻灯片1向左移动并显示幻灯片2等...

请参阅照片了解更多信息:

enter image description here

2 个答案:

答案 0 :(得分:1)

最简单的解决方案是更改通过您的设置显示的帖子数量。我想这对你来说不是一个好的解决方案;这是另一种方法:

您需要在主题中编辑页面。您可以编辑主页面;我建议您make a new page template并将其用作首页。

然后您创建the loopquery_posts的变体。创建具有3个帖子(每页)的循环将如下所示:

query_posts( 'posts_per_page=3' );

the Wordpress codex中查看更多信息;特别是template tags页。

答案 1 :(得分:0)

Btrnd在技术上是正确的。但是,您似乎并不了解Wordpress模板的工作原理。 (我不是故意冒犯)。也许你正在寻找一个插件来为你做这个?

http://speckyboy.com/2010/06/30/top-10-content-slider-plugins-for-wordpress/

您可以在上面的帖子中尝试任何内容。要安装插件,请下载并将其放入插件目录中。或者,您可以直接从Wordpress搜索插件,并从Wordpress后端安装它们。请参阅codex(下面的链接)了解如何执行此操作。

http://codex.wordpress.org/Managing_Plugins#Installing_Plugins