dedecms会员发布文章增加来源功能

2013-02-09 16:26 来源:www.chinab4c.com 作者:dedecms专家

   dedecms会员发布文章增加来源功能,这个功能十分的必要,我们在dedecms会员中心默认后台发布文章没有文章的来源录入功能,这个时候我们再对dedecms进行二次开发的时候,可以增加该功能。

    1:dedecms文章发布模板article_add.htm,article_edit.htm增加以下代码

       <p class="cellBg">
            <label>来源:</label>
            <input type="text" name="source" id="source" value="<?php echo $row['source']; ?>" class="intxt" />
          </p>

   2:article_add.php以及article_edit.php增加以下代码。

      $inQuery = "INSERT INTO `dede_archives`(id,typeid,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,
color,writer,source,litpic,pubdate,senddate,mid,description,keywords,mtype)
VALUES ('$arcID','$typeid','$sortrank','$flag','$ismake','$channelid','$arcrank','0','$money','$title','$shorttitle',
'$color','$writer','$_POST[source]','$litpic','$pubdate','$senddate','$mid','$description','$keywords','$mtypesid'); ";

     source='$source',

    以上修改,其实就实现了dedecms会员发布文章增加来源功能.

   相关文章:

    ecshop文章页面自定义标题

    来源:http://www.chinab4c.com