函数
文章平均质量分 77
GaiMingZhong
这个作者很懒,什么都没留下…
展开
-
函数wp_normalize_path
/** * 包含文件. 函数引用:wp_normalize_path 调用函数使文件系统路径正常化。这一功能主要是基于Windows的服务器,使用斜杠代替反斜线,斜线,以确保没有重复的存在。 使用:<?php wp_normalize_path($path); ?> 示例:将主题包括路径的标准化的一个简单示例 $b...翻译 2018-02-22 13:00:05 · 629 阅读 · 0 评论 -
do_action
Browse: Home / Reference / Functions / do_action()do_action( string $tag, $arg = '' )Execute functions hooked on a specific action hook.执行特定功能的动作钩子DescriptionThis function invokes all functions attac...翻译 2018-02-23 12:32:53 · 394 阅读 · 0 评论 -
WordPress函数:add_action(添加动作)
说明将函数连接到指定action(动作)。在Plugin API/Action Reference 上查看动作hook列表。wordpress核心调用do_action() 时触发动作。用法1234<?php add_action( $tag, $function_to_add, $priority, $accepted_args );?>参数$tag...翻译 2018-02-23 12:33:44 · 1411 阅读 · 0 评论 -
add plugins page
描述为插件添加菜单的子菜单页面使用 <?phpadd_plugins_page( $page_title, $menu_title, $capability, $menu_slug, $function);?> 参数$page_title(string) (required) The text to be displayed in the title tags of the page ...翻译 2018-02-25 10:46:14 · 356 阅读 · 0 评论