WordPress函数 plugins_url 专为获取插件目录下文件的路径而设计。
函数原型:
plugins_url( string $path = '', string $plugin = '' ): string
如果未提供参数,则默认为插件目录URL。
此函数检索plugins或mu plugins目录的绝对URL(不带斜杠),或者在使用$path参数时,检索该目录下的特定文件。您可以将$path参数指定为相对于插件或mu插件目录的硬编码路径,或者方便地传递__FILE__作为第二个参数,使$path相对于当前PHP脚本文件的父目录。
使用举例:
echo '<img src="' . esc_url( plugins_url( 'images/wordpress.png', dirname(__FILE__) ) ) . '" > ';
结果:
<img src="https://www.zhuige.com/wp-content/plugins/my-plugin/images/wordpress.png" >
-
WordPress函数:translate_nooped_plural 翻译并注册字符串WordPress函数:translate_nooped_plural 翻译并注册字符串
-
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 带上下文的转义属性,翻译显示
暂无评论,抢个沙发...