2

我正在尝试获取我在特定类别中发布的所有帖子的 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();

?>

我已经尝试过,但是这样做的方式不同,但仅显示无序列表中帖子的标题:例如

  • 框架<-----这些是我的帖子标题
  • 开源
  • 模型-视图-控制器 (MVC)

但我想要一些看起来像的东西

  • 框架

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

  • 开源

“我的帖子开源内容”

  • 模型-视图-控制器 (MVC)

“我的帖子内容”

4

2 回答 2

2

伙计们,我把ans留给some1来寻求帮助。

    <?php

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

// The Loop
while ( have_posts() ) : the_post(); ?>
    <!--echo '<li>';
    the_title();
    echo '</li>';-->
    <li>
    <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" ><?php the_title(); ?></a> <?php echo get_post_field('post_content',  the_ID());

 ?>
      </li> 
      <?php
endwhile;

// Reset Query
wp_reset_query();

?>

谢谢你的帮助

于 2013-09-13T08:23:56.630 回答
1

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

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

如果是这样,请使用the_ID()您使用过的功能the_title();

于 2013-09-09T13:06:40.413 回答