gpt4 book ai didi

php - 内部加入自定义表正常的 WP_Query

转载 作者:行者123 更新时间:2023-11-28 23:45:20 25 4
gpt4 key购买 nike

这是我的 table :

名称:自定义表
字段:ID |标题 |日期 |内容 |网址

现在我想将这个表“内部加入”到正常的 WP-Query 中,但只有当我在“新闻”类别中时。

这就是我的

function meta_filter_posts( $query )
{

if(is_category('news'))
{
// and here I want to add my custom table (like inner join)
// sorted by date

$query->set('orderby','date');
$query->set('order', 'DESC');

/* innerJoin the table customTable */


}

}
add_filter( 'pre_get_posts', 'meta_filter_posts' );

关于如何包含此表的任何想法?提前致谢!

最佳答案

我推荐在这里找到的答案:

https://stackoverflow.com/a/19547093/1361532

这应该允许您纯粹使用 WP_Query 及其设置函数来准确获取您需要的内容,而不是尝试重建 WP_Query 对象。我能想到的使这项工作可行的唯一其他方法是对数据库进行纯查询,这似乎太过分了。

关于php - 内部加入自定义表正常的 WP_Query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33686381/

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