gpt4 book ai didi

wordpress - 如何在wordpress的特定类别下获取所有帖子的ID

转载 作者:行者123 更新时间:2023-12-04 04:42:22 25 4
gpt4 key购买 nike

我正在尝试获取我在特定类别中制作的帖子的所有 ID。

我在 WordPress 中创建了一个类别,例如 web-articals .

我创建了一些帖子并将它们链接到 web-articals类别。
现在我想显示我在该类别中创建的帖子的内容,为此我想要该类别中的所有帖子 ID。

如何从网络文章类别中的所有帖子中获取 ID?

<?php

query_posts( array ( 'category_name' => 'web articals', 'posts_per_page' => -1, 'order' => ASC ) );

// The Loop
while ( have_posts() ) : the_post(); ?>

<li>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" ><?php the_title(); ?></a>
</li>
<?php
endwhile;

// Reset Query
wp_reset_query();

?>

我已经尝试过这个,但不知道这样做的方式,但只显示无序列表中帖子的标题:
例如
  • 框架工作 <----- 这些是我的帖子标题
  • 开源
  • 模型- View - Controller (MVC)

  • 但我想要看起来像的东西
  • 框架

  • “我的帖子框架作品的内容”
  • 开源

  • “我的帖子内容开源”
  • 模型- View - Controller (MVC)

  • “我的帖子内容”

    最佳答案

    我希望下面是网络文章的帖子

    Frame Work <----- these are my post titles
    Open Source
    Model–View–Controller (MVC)

    如果是这样,则使用 the_ID() 功能就像你用过的 the_title(); .

    关于wordpress - 如何在wordpress的特定类别下获取所有帖子的ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18698306/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com