标签:
第一步:很简单添加相关的代码;
添加内容到:DEDECMS目录下 include/helpers/archive.helper.php 文件中添加
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
if ( ! function_exists( ‘TypeurlAarc‘ )) { function TypeurlAarc( $typeid ){ global $dsql ; $typeurl = ‘‘ ; $dsql = new DedeSql(false); $row = $dsql ->GetOne( "select typedir,defaultname from #@__arctype where id=$typeid" ); $typeurl = $row [ ‘typedir‘ ]; $typeurl = substr ( $typeurl ,9,60). ‘/‘ . $row [ ‘defaultname‘ ]; return $typeurl ; } } |
目的很明确,获取当前栏目的URL地址!获取栏目的目的是干什么呢?可以使WAP手机站和PC端的网站栏目同步!
2、如何调用该栏目呢?
1
|
{dede:field.id runphp= ‘yes‘ } $id =@me;@me= ‘‘ ; $url =GetOneArchive( $id );@me= str_replace ( $GLOBALS [ ‘cfg_basehost‘ ], ‘‘ , $url [ ‘arcurl‘ ]);{/dede:field.id} |
注意:$GLOBALS[‘‘]获取到全局变量
如果想做DEDECMS的二次开发的方法很多也比较简单!XIEXIE!
标签:
原文地址:http://www.cnblogs.com/phpjieshuo/p/4216882.html