用于查询帖子及其类别的SQL

时间:2012-10-29 作者:ironman

我正在试图查询wordpress数据库中的帖子以及它们属于什么类别。是否有sql查询可用于此操作?

谢谢

2 个回复
SO网友:Joseph Leedy

要在WordPress中获得特定帖子,可以使用get_post() 功能和get_the_category() 获取与之关联的类别。然后可以使用中的代码this answer 转储使用的SQL查询。

<?php
$post_ID = 7;
$the_post = get_post( $post_ID );
$the_category = get_the_category( $post_ID );

SO网友:wpdeveloper

要在WordPress中获得特定帖子,可以使用get_post() 功能和get_the_category() 获取与之关联的类别。然后,您可以使用此答案中的代码转储所使用的SQL查询:$GLOBALS[\'wpdb\']->last_query.

结束