WordPress函数 plugin_dir_url 专为获取插件文件目录的URL设计。这函数和 plugin_dir_path 是一对。
函数原型:
plugin_dir_url( string $file ): string
函数源码:
function plugin_dir_url( $file ) {
return trailingslashit( plugins_url( '', $file ) );
}
使用举例:
// 当前目录URL:https://www.zhuige.com/wp-content/plugins/my-plugin/includes/
// 输出:https://www.zhuige.com/wp-content/plugins/my-plugin/includes/images/placeholder.png
echo plugin_dir_url( __FILE__ ).'images/placeholder.png';
// 输出:http://example.com/wp-content/plugins/my-plugin/images/placeholder.png
echo plugin_dir_url( __DIR__ ).'images/placeholder.png';
这函数用法很简单,一看例子什么都明白了。如有兴趣还可以参考:《三分钟热度教程:WordPress插件开发之插件目录下文件路径与URL》
-
WordPress函数:number_format_i18n 数字国际化WordPress函数:number_format_i18n 数字国际化
-
WordPress函数:date_i18n 日期国际化WordPress函数:date_i18n 日期国际化
-
WordPress函数:esc_html_e 转义翻译的字符串并显示WordPress函数:esc_html_e 转义翻译的字符串并显示
-
WordPress函数:esc_attr_e 属性转义、翻译、显示WordPress函数:esc_attr_e 属性转义、翻译、显示
-
WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示
-
WordPress必备:使用wp_get_theme()函数获取当前主题详情在WordPress中,wp_get_theme() 函数用于获取当前启用的主题或指定主题的信息。这个函数返回一个 WP_Theme 对象,该对象包含了主题的详细信息,如主题名称、版本、模板目录、样式表目录等。
暂无评论,抢个沙发...