无Java脚本的WordPress流体特色Post Carousel滑块

时间:2014-08-09 作者:NewUser

我在我的测试站点上实现了一个没有Javascript的纯CSS滑块,有5个图像幻灯片。我如何调整滑块以显示我的特色帖子类别中的5篇最新帖子,并使用拇指、标题、摘录和指向帖子的链接,而不是图片?

非常感谢你

Here is the Fiddle

1 个回复
最合适的回答,由SO网友:Tomás Cot 整理而成

<div class=carousel>
        <ul class=panes>    
<?php 
// the query
$args = array(\'cat\' => id_of_featured_posts_category, \'posts_per_page\' => 5);

$the_query = new WP_Query( $args ); ?>

<?php if ( $the_query->have_posts() ) : ?>


    <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

            <li>
                <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                <?php the_post_thumbnail( \'full\'); ?>
            </li>


    <?php endwhile; ?>



  <?php endif; ?>
 </ul>
    </div>
我这里没有wordpress来测试它,但它应该可以工作,要了解更多信息,您可以查看文档WP_Query. 我不知道您想将摘录添加到哪里(您需要调用\\u execrpt()函数才能获取它),但我相信您可以从这里获得。

结束

相关推荐

WordPress edit.php类别过滤器仅显示来自直接类别的帖子,而不显示来自其子类别的帖子

在管理编辑。php页面,当我按特定类别过滤帖子时(使用内置下拉列表),它会显示与该类别相关的所有帖子,以及“在”其子类别下的所有帖子。如何更改此功能,以便在按类别筛选时只显示该类别中的帖子,而不显示子类别中的帖子。非常感谢您的帮助,因为我在网上找不到有关此的任何信息。非常感谢。