获取WordPress的当前页面URL(上下文)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取WordPress的当前页面URL(上下文)相关的知识,希望对你有一定的参考价值。
This script will return the URL for the current page you're on, including category and tag pages.
<?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } ?> <?php echo curPageURL(); ?>
以上是关于获取WordPress的当前页面URL(上下文)的主要内容,如果未能解决你的问题,请参考以下文章
如何从页面模板上调用的函数而不是从ins获取当前页面永久链接url