Blogger Information
Blog 62
fans 3
comment 1
visits 29895
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
dede通过指定标题或文字获取对应文章链接地
kiraseo_wwwkiraercom
Original
970 people have browsed it


本教程是织梦教程,教你如何通过自定义函数方式来获取文章链接地址

通过指定标题获取对应文章链接地

在extend.func.php 文件添加一下代码

函数写法

function arc_url($title){ 
   global $dsql;    
   $sql ="Select id FROM dede_archives where title={$title}";  
   $sql2 ="SELECT value FROM dede_sysconfig WHERE aid=1";    
   $row = $dsql->GetOne($sql);  
   $site_url = $rows['value'];
   $row = $dsql->GetOne($sql);    
   $url =GetOneArchive($row['id']);    
   return $site_url.$url['arcurl'];
 }

函数用法

//举例说明,具体情况,还要根据自己生成位置和使用所属标签为例,案例使用方式同理
{dede:field.title function="arc_url(@me)"/}

本文章提供的写法 只是举例说明,具体根据实际情况,实际处理


温馨提醒,函数一定要写在

域名/include/extend.func.php 文件里面即可

书写的简单查看,是否有相同函数名字,如有,记得修改(同时修改的时候,调用自己修改后的函数名)

本文章为作者原创,没有作者授权,请勿转载!!!


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post