使用MySQL SELECT查询获取父级的子级

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用MySQL SELECT查询获取父级的子级相关的知识,希望对你有一定的参考价值。

Plugin gets child pages of parent in Wordpress. You'll need to pass the parent ID but this isn't difficult to figure out programmatically if needed, either.
  1. <?php
  2.  
  3. // Include Wordpress framework/API
  4. require_once( '/path/to/wp-load.php' );
  5.  
  6.  
  7. // Get parents (level one)
  8. $items_level_one = $wpdb->get_results(
  9. 'SELECT
  10. *
  11. FROM
  12. wp_posts
  13. WHERE
  14. post_type = "Page" AND
  15. post_status = "Publish" AND
  16. post_parent = "[put parent id here]"
  17. ORDER BY
  18. menu_order,
  19. post_title',
  20. ARRAY_A
  21. );
  22.  
  23. print_r($items_level_one);
  24.  
  25. ?>

以上是关于使用MySQL SELECT查询获取父级的子级的主要内容,如果未能解决你的问题,请参考以下文章

Java - 为啥另一个包中的子级无法通过父级引用访问父级的受保护方法?

mysql 查询所有父级,子级

从父级获取过滤的子级

Firebase:在不知道父级的情况下查询内部子级

查询未知父firebase的子快照

为啥我不能使用“fieldset”标签作为 flex 父级的深层子级?