织梦模板在高级搜索页面advancedsearch.php调用自定义字段

织梦模板在高级搜索页面advancedsearch.php调用自定义字段,第1张

概述下面跟大家谈的是关于如何在在高级搜索页面advancedsearch.php调用自定义字段方法: 步骤: 找到advancedsearch.php页面。 $query = select main.id as aid,main.*,main.description as description1, type.* from $maintable main left join dede2_arctype t 下面跟大家谈的是关于”如何在在高级搜索页面advancedsearch.PHP调用自定义字段“方法:
步骤:
找到advancedsearch.PHP页面。
$query = "select main.ID as aID,main.*,main.description as description1,type.* from $maintable main left join dede2_arctype type on type.ID=main.typeID left join $addontable addon on addon.aID=main.ID $where  $orderby";
改成
$query = "select main.ID as aID,type.*,addon.*
    from $maintable main
    left join dede2_arctype type on type.ID=main.typeID
    left join $addontable addon on addon.aID=main.ID
    $where  $orderby";
提示:考虑dede程序性能,如果没必要就不要搜索这些字段了 总结

以上是内存溢出为你收集整理的织梦模板在高级搜索页面advancedsearch.php调用自定义字段全部内容,希望文章能够帮你解决织梦模板在高级搜索页面advancedsearch.php调用自定义字段所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1048241.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存