WordPress 幻灯片

发布于 2024-11-04 08:55:11 字数 1276 浏览 0 评论 0原文

你好 我需要制作一个 WordPress 幻灯片。 我需要循环将帖子列出为

  • 这是 html

    <div id="container">
        <div id="content">
            <div id="slider">
                <ul>
                    <li>
                        <img src="images/slide01.jpg" alt="Css Template Preview" /></li>
                                                <li>
                        <img src="images/slide02.jpg" alt="Css Template Preview" /></li>
                                                <li>
                        <img src="images/slide03.jpg" alt="Css Template Preview" /></li>
                </ul>
            </div>
        </div>
    </div>
    

    这是 php。

    <div id="container">
    <div id="content">
        <div id="slider">
            <?php $query= 'cat=3'; ?>
            <?php query_posts($query); ?>
            <?php if(have_posts()) : ?>
            <?php while(have_posts()) : the_post(); ?>
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
            <?php the_content(); ?>
            <?php endwhile; ?>
            <?php endif; ?>
        </div>
    </div>
    

    Hello
    I need to make a wordpress slideshow.
    I need the loop to list posts as

  • This is the html

    <div id="container">
        <div id="content">
            <div id="slider">
                <ul>
                    <li>
                        <img src="images/slide01.jpg" alt="Css Template Preview" /></li>
                                                <li>
                        <img src="images/slide02.jpg" alt="Css Template Preview" /></li>
                                                <li>
                        <img src="images/slide03.jpg" alt="Css Template Preview" /></li>
                </ul>
            </div>
        </div>
    </div>
    

    this is the php.

    <div id="container">
    <div id="content">
        <div id="slider">
            <?php $query= 'cat=3'; ?>
            <?php query_posts($query); ?>
            <?php if(have_posts()) : ?>
            <?php while(have_posts()) : the_post(); ?>
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
            <?php the_content(); ?>
            <?php endwhile; ?>
            <?php endif; ?>
        </div>
    </div>
    

    如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(1

    凉城 2024-11-11 08:55:11

    所以我猜您的帖子每篇都只包含 1 张图片,并且您想将这些帖子以幻灯片形式列出?如果是这样,你可以这样做(未经测试的代码):

    <div id="container">
    <div id="content">
        <div id="slider">
            <ul>
            <?php 
                $query= 'cat=3'; 
                query_posts($query);
                if(have_posts()) :
                while(have_posts()) : the_post();
            ?>
            <li><?php the_content(); ?></li>
            <?php 
                endwhile;
                endif;
            ?>
            </ul>
        </div>
    </div>
    

    So I guess you have posts each containing only 1 image and you want to list these posts as a slideshow? If so, you could do it like this (untested code):

    <div id="container">
    <div id="content">
        <div id="slider">
            <ul>
            <?php 
                $query= 'cat=3'; 
                query_posts($query);
                if(have_posts()) :
                while(have_posts()) : the_post();
            ?>
            <li><?php the_content(); ?></li>
            <?php 
                endwhile;
                endif;
            ?>
            </ul>
        </div>
    </div>
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文