gpt4 book ai didi

mysql - 想用 get_posts() wordpress 加入另一个表

转载 作者:行者123 更新时间:2023-11-29 04:42:18 24 4
gpt4 key购买 nike

我想用 get_posts() 方法加入另一个表并从新表中获取字段。

我知道 add_filter( 'posts_where','calback_function_name')

请帮帮我

最佳答案

如果您要开始连接表,您将需要使用自己的查询。

这很简单,您可以使用 WordPress 的方法来使用它的数据库处理程序。

global $wpdb;

$query = '
SELECT *
FROM '. $wpdb->posts .' p
JOIN my_custom_table c ON p.ID = c.ID
';

$results = $wpdb->get_results( $query, OBJECT );

WPDB WordPress Codex entry 中有很多这方面的信息.

关于mysql - 想用 get_posts() wordpress 加入另一个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25873326/

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