!
也想出现在这里? 联系我们
广告位

wordpress路径和url获取总结

  经常与 WordPress 打交道,经常遇到的一个问题就是获取路径,包括 URL 路径和服务器路径,在主题或插件中引用 js 或 css 文件需要 URL 地址,而 include 一些文件时则需要服务器路径。在 WordPress 中,不能认定 wp-content 目录一定位于/wp-content 下,也不能认为 admin 的地址一定是/wp-admin,为了避免错误,了解 WordPress 中与获取路径相关的函数很重要。

站点路径相关函数:

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

$url = home_url();
echo $url;
//输出: http://www.waitig.com
$url = home_url('/images/');
echo $url;
输出:http://www.waitig.com/images/

site_url()
如果 WordPress 安装在域名根目录下,则该函数与 home_url()相同。
如果 WordPress 安装在子目录下,例如 http://www.waitig.com/wordpress,则 site_url()返回 WordPress 实际安装地址,相当于后台->设置->常规中的“WordPress 地址(URL)”。

$url = site_url();
echo $url;
//假设 WordPress 安装在 http://www.waitig.com/wordpress 下
//输出:http://www.waitig.com/wordpress

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

$url = admin_url();
echo $url;
//输出:http://www.waitig.com/wp-admin/

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

$url = content_url();
echo $url;
//输出:http://www.waitig.com/wp-content

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

define('WP_CONTENT_DIR', '/home/user/public_html/cdn');
define('WP_CONTENT_URL', 'http://waitig.com');
//则 content_url()的返回值为
http://waitig.com

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

$url = includes_url( '/js/');
echo $url;
//输出:http://www.waitig.com/wp-includes/js/

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

<?php $upload_dir = wp_upload_dir(); ?>

提供如下信息给你

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

例如

$upload_dir = wp_upload_dir();
echo $upload_dir['baseurl'];
//输出:http://www.waitig.com/wp-content/uploads

主题路径相关函数:

get_theme_root_uri()
获取存放主题的目录 URI

echo get_theme_root_uri();
//输出:http://www.waitig.com/wp-content/themes

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

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

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

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

get_stylesheet_directory()
获取当前启用的主题目录的服务器绝对路径,例如
/home/user/public_html/wp-content/themes/twentyeleven
可以用来 include 文件,例如

<?php include( get_stylesheet_directory() . '/includes/myfile.php'); ?>

get_stylesheet_directory_uri()
获取当前启用的主题目录的 URI,例如

echo get_stylesheet_directory_uri();
//输出:http://www.waitig.com/wp-content/themes/twentyeleven

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

<img src="https://www.22vd.com/<?php echo get_stylesheet_directory_uri() ?>/images/aternus.png" alt="" title="" width="" height="" />

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_url()
获取当前插件的目录的 URI,例如一个插件位于/wp-content/plugins/myplugin 下,该目录下放有插件的主文件名为 myplugin.php,在 myplugin.php 中执行下面的代码,结果如下

echo plugins_url();
//输出:http://www.waitig.com/wp-content/plugins
echo plugins_url('',__FILE__);
//输出:http://www.waitig.com/wp-content/plugins/myplugin
echo plugins_url('js/myscript.js',__FILE__);
//输出:http://www.waitig.com/wp-content/plugins/myplugin/js/myscript.js

plugin_dir_url()
返回当前插件的目录 URI,例如

echo plugin_dir_url( __FILE__ );
//输出:http://www.waitig.com/wp-content/plugins/myplugin/

注意结尾有反斜杠。
plugin_dir_path()
返回当前插件目录的服务器绝对路径,例如

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

可以用来引用文件,例如

<?php
define( 'MYPLUGINNAME_PATH', plugin_dir_path(__FILE__) );
require MYPLUGINNAME_PATH . 'includes/class-metabox.php';
require MYPLUGINNAME_PATH . 'includes/class-widget.php';
?>

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

路径相关常量:

WordPress 中还有一组用 define 定义的常量代表路径。
WP_CONTENT_DIR
wp-content 目录的服务器绝对路径,例如
/home/user/public_html/wp-content
WP_CONTENT_URL
wp-content 目录的 URI 地址,例如
http://www.waitig.com/wp-content
WP_PLUGIN_DIR
插件目录的服务器绝对路径,例如
/home/user/public_html/wp-content/plugins
WP_PLUGIN_URL
插件目录的 URI 地址,例如
http://www.waitig.com/wp-content/plugins
TEMPLATEPATH
当前启用主题目录的服务器绝对路径,相当于 get_template_directory()例如
/home/user/public_html/wp-content/themes/twentyeleven
STYLESHEETPATH
当前启用主题目录的服务器绝对路径,相当于 get_stylesheet_directory(),与 TEMPLATEPATH 的区别在于如果使用 child theme,该常量指向 child theme 目录。

wordpress 路径和 url 获取总结

已有 642 人购买
    此资源下载价格为2元立即购买(VIP 免费)立即升级
查看演示升级 VIP立刻购买

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

傻瓜方法给博客文章添加漂亮小按钮

2024-6-30 13:29:49

WordPress教程

使用样式修改你的网站默认的鼠标样式

2024-7-1 13:30:09

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索