EMLOG实现自动标签内链功能
曾经用过WordPress有自动标签内链功能,就一直很想在EMLOG实现。
如今现在给你们分享一下不需要改EMLOG内核也可以实现自动标签内链功能!
方法很简单,提取三合一EMLOG教程中的功能,一共有两个个步骤....
首先在模板目录module.php文件中加入以下代码:
<?php //自动标签内链 function nltag($content ,$domain) { global $CACHE; $tag_cache = $CACHE->readCache('tags'); foreach($tag_cache as $value){ $tag_url = Url::tag($value['tagurl']); $keyword = $value['tagname']; $cleankeyword = stripslashes($keyword); $url = "<a href=\"{$tag_url}\" title=\"浏览关于“{$cleankeyword}”的文章\" target=\"_blank\" >{$cleankeyword}</a>"; $regEx = '\'(?!((<.*?)|(<a.*?)))('. $cleankeyword . ')(?!(([^<>]*?)>)|([^>]*?</a>))\'s'; $content = preg_replace($regEx,$url,$content); } return $content; } ?>打开echo_log.php文件放置挂载点
<?php echo $log_content; ?>替换(当然你们自己改过,就不是找这个咯)
<?php echo nltag($log_content,$domain);?>
上一篇:Emlog文章内容实现三合一功能
下一篇:EMLOG网站信息统计代码(全)