在源码var/Typecho/Request.php有个getRequestUrl函数可以获取当前网址链接。如果在$this
是Widget_Archive
实例的地方可以直接使用:
<?php echo $this->request->getRequestUrl(); ?>
如果没有$this
,可以这样使用
<?php echo Typecho_Request::getInstance()->getRequestUrl(); ?>
当然,也可以直接使用 PHP 的原生常量获取:
<?php
function thisPageUrl() {
return (isset($_SERVER['HTTPS']) ? 'https://' : 'http://').$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
}
echo thisPageUrl();
?>
精选留言