wordpress 获取路径和url地址的函数大全 -云顶国际

自带了获取路径和url地址的函数,方便制作出来的模板适合任何网站使用,就不用绝对地址了。下面分享  获取路径和url地址的函数大全,制作 模板必备哦!

下面以 https://www.xiaoyi.vc 为例子:

站点路径相关函数

home_

返回站点路径,相当于后台设置->常规中的”站点地址(url)”。

$url = home_;
echo $url;
//输出: https://www.xiaoyi.vc
$url = home_;
echo $url;
//输出:https://www.xiaoyi.vc/images/

site_

如果安装在域名根目录下,则该函数与home_相同。

如果安装在子目录下,例如:https://www.xiaoyi.vc 则 site_ 返回实际安装地址,相当于后台->设置->常规中的“ 地址(url)”。

$url = site_;
echo $url;
//假设安装在 https://www.xiaoyi.vc 下
//输出:https://www.xiaoyi.vc

admin_

返回后台地址,传递参数后也可返回后台menu的地址

$url = admin_;
echo $url;
//输出:https://www.xiaoyi.vc/wp-admin/

content_

返回实际的wp-content目录,如果是默认安装,且装在根目录下,则如下所示

$url = content_;
echo $url;
//输出:https://www.xiaoyi.vc/wp-content

如果在wp-config.php中改变了wp-content目录的位置,则该函数会返回正确地址,例如wp-config.php中如下定义

define('wp_content_dir','/home/user/public_html/cdn');
define('wp_content_url','http://sola-cdn.me');

则content_的返回值为

http://sola-cdn.me

includes_

返回当前站点存放核心文件的目录wp-includes的地址,可以带一个$path作为参数。

$url = includes_;
echo $url;
//输出:https://www.xiaoyi.vc/wp-includes/js/

wp_upload_dir()

返回上传目录的地址,是一个数组,包含一系列与上传地址相关的信息。

提供如下信息给你

  • ‘path’ – 上传目录的服务器绝对路径,通常以反斜杠(/)开头
  • ‘url’ – 上传目录的完整url
  • ‘subdir’ – 子目录名称,通常是以年/月形式组织的目录地址,例如/2012/07
  • ‘basedir’ – 上传目录的服务器绝对路径,不包含子目录
  • ‘baseurl’ – 上传目录的完整url,不包含子目录
  • ‘error’ – 报错信息.

例如

$upload_dir = wp_upload_dir();
echo $upload_dir['baseurl'];
//输出:https://www.xiaoyi.vc/wp-content/uploads

主题路径相关函数

get_theme_root_uri()

获取存放主题的目录uri

echo get_theme_root_uri();
//输出:https://www.xiaoyi.vc/wp-content/themes

get_theme_root()

获取存放主题的目录的服务器绝对路径

echo get_theme_root();
//输出:/home/user/public_html/wp-content/themes

get_theme_roots()

获取主题目录的目录名称,如果你的主题目录是/wp-content/themes,则

echo get_theme_roots();
//输出:/themes

get_stylesheet_directory()

获取当前启用的主题目录的服务器绝对路径,例如

/home/user/public_html/wp-content/themes/twentyeleven

可以用来include文件,例如

get_stylesheet_directory_uri()

获取当前启用的主题目录的uri,例如

echo get_stylesheet_directory_uri();
//输出:https://www.xiaoyi.vc/wp-content/themes/twentyeleven

可以使用在需要主题目录uri的场合,例如图片

get_template_directory_uri()

如果当前启用的主题是一个child theme,该函数返回parent theme的主题目录uri,用法与get_stylesheet_directory_uri()类似。

get_template_directory()

如果当前启用的主题是一个child theme,该函数返回parent theme的主题目录的服务器绝对路径,用法与get_stylesheet_directory()类似。

get_template()

获取当前启用主题的主题目录名称,例如现在启用的主题为twentyeleven,则

echo get_stylesheet();
//输出:twentyeleven

get_stylesheet()

获取当前启用主题的主题目录名称,与get_template()的区别是,如果用了child theme,则返回child theme的目录名称。
插件路径相关函数

plugins_

获取当前插件的目录的uri,例如一个插件位于/wp-content/plugins/myplugin下,该目录下放有插件的主文件名为myplugin.php,在myplugin.php中执行下面的代码,结果如下

echo plugins_;
//输出:https://www.xiaoyi.vc/wp-content/plugins
echo plugins_;
//输出:https://www.xiaoyi.vc/wp-content/plugins/myplugin
echo plugins_;
//输出:https://www.xiaoyi.vc/wp-content/plugins/myplugin/js/myscript.js

plugin_dir_

返回当前插件的目录uri,例如

echo plugin_dir_;
//输出:https://www.xiaoyi.vc/wp-content/plugins/myplugin/

注意结尾有反斜杠。

plugin_dir_path()

返回当前插件目录的服务器绝对路径,例如

echo plugin_dir_path(__file__ );
//输出:/home/user/public_html/wp-content/plugins/myplugin/

可以用来引用文件,例如

plugin_basename()

返回调用该函数的插件文件名称(包含插件路径)

例如在插件myplugin下的myplugin.php文件中调用该函数,结果如下

echo plugin_basename(__file__);
//输出:myplugin/myplugin.php

如果在myplugin/include/test.php文件中调用(test.php通过include引用到myplugin.php中),结果如下

echo plugin_basename(__file__);
//输出:myplugin/include/test.php

路径相关常量

中还有一组用define定义的常量代表路径。

wp_content_dir

wp-content目录的服务器绝对路径,例如

/home/user/public_html/wp-content

wp_content_url

wp-content目录的uri地址,例如

https://www.xiaoyi.vc/wp-content

wp_plugin_dir

插件目录的服务器绝对路径,例如

/home/user/public_html/wp-content/plugins

wp_plugin_url

插件目录的uri地址,例如

https://www.xiaoyi.vc/wp-content/plugins

templatepath

当前启用主题目录的服务器绝对路径,相当于get_template_directory() 例如

/home/user/public_html/wp-content/themes/twentyeleven

stylesheetpath

当前启用主题目录的服务器绝对路径,相当于get_stylesheet_directory(),与templatepath的区别在于如果使用child theme,该常量指向child theme目录。

相关文章:

  • 制作 模板 必看:功能函数调用集合
  • 常用函数

# 更多技巧,请关注「专题」

         
网站地图