资源描述:
《dedecms栏目自定义字段的方法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Dedecms栏目自定义字段的方法鉴于这个教程没人发过,网上搜索的人也比较多。所以就做了个。比如我要添加:栏目图片,和栏目关键字等。随便你吧。好。我们现在开始做。第一我们要进去mysql数据库里添加字段,自己命名好!比如我下面添加了一个栏目搜索关键字字段,当然你字段可以自己新建,找到表dede_arctype(这个是栏目模型的数据库表,前面是你安装的表名,新手要注意,不要问我,我找不到这个表)注意。这里老鸟跳过然后点击图片1在点击添加字段图片2添加字段图片3到这里数据库字段添加好了。接下来我们开始做后台。大家写找到后台栏目管理模版!要更改的2
2、个D:wwwdedetemplets模版:catalog_add.htm、catalog_edit.htm下面就演示一个图片4然后添加字段表单,这个一般大家都会的我添加的代码是:
栏目搜索关键字: |
这里大家注意了。表单的nam
3、e和id要和添加的mysql表字段一样,不应的话。还要多写个取值代码。一样的话。默认dedecms会自动取的,然后我们做最后一部,把数据添加进去。大家找到:D:wwwdedecatalog_edit.php目录可能和大家不一样也就是后台里面的catalog_edit.php,catalog_add.phpcatalog_edit.php要改的地方有:38行$upquery="Update`dede_arctype`set issend='$issend', sortrank='$sortrank', typename=
4、'$typename', typedir='$typedir', isdefault='$isdefault', defaultname='$defaultname', issend='$issend', ishidden='$ishidden', channeltype='$channeltype', tempindex='$tempindex', templist='$templist', temparticle='$temparticle', namerule='$nameru
5、le', namerule2='$namerule2', ispart='$ispart', corank='$corank', description='$description', keywords='$keywords', moresite='$moresite', `cross`='$cross', `content`='$content', `crossid`='$crossid', `smalltypes`='$smalltypes' $uptopsql where
6、id='$id'";sql语句里面添加我们刚才的字段进去。也就是下面这个代码$upquery="Update`dede_arctype`set issend='$issend', sortrank='$sortrank', typename='$typename', typedir='$typedir', isdefault='$isdefault', defaultname='$defaultname', issend='$issend', ishidden='$ishidden', c
7、hanneltype='$channeltype', tempindex='$tempindex', templist='$templist', temparticle='$temparticle', namerule='$namerule', namerule2='$namerule2', ispart='$ispart', corank='$corank', description='$description', keywords='$keywords', moresite='$
8、moresite', `cross`='$cross', `content`='$content', `crossid`='$crossid',