名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
下面跟大驾家谈的是关于”如何在在高级搜索页面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,main.*,main.description as description1, 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程序性能,如果没必要就不要搜索这些字段了
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序dede替换文章中的div相关具体操作方法