如何在主页中创建自定义帖子类型?

发布于 2024-09-27 21:19:03 字数 73 浏览 0 评论 0原文

我的网站中有一个自定义主页。我想添加 3 个自定义帖子区域来更新图像、文本和链接。在 WordPress 3.1 中如何做到这一点?

I have an custom home page in my site. I want to add 3 custom post ares to update images, text and links. How it can be done in wordpress 3.1?

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

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

发布评论

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

评论(1

勿挽旧人 2024-10-04 21:19:03

在functions.php 中创建自定义帖子类型。 如何制作自定义帖子类型! 然后添加对于每种帖子类型,自定义循环到您的静态主页模板,如下所示:

// The Query
   $args = array(
       'post_type' => 'YOUR POST TYPE',
       'posts_per_page' => 1 (Or as many or as few as you want -1 shows all!)
    );
    $the_query = new WP_Query( $args );

    // The Loop
    while ( $the_query->have_posts() ) : $the_query->the_post();
        echo '<li>';
        the_title();
        echo '</li>';
    endwhile;

    // Reset Post Data
    wp_reset_postdata();

    ?>

Create your custom post types in functions.php. How to make custom post type! Then add custom loops to your static homepage template as follows for each post type:

// The Query
   $args = array(
       'post_type' => 'YOUR POST TYPE',
       'posts_per_page' => 1 (Or as many or as few as you want -1 shows all!)
    );
    $the_query = new WP_Query( $args );

    // The Loop
    while ( $the_query->have_posts() ) : $the_query->the_post();
        echo '<li>';
        the_title();
        echo '</li>';
    endwhile;

    // Reset Post Data
    wp_reset_postdata();

    ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文