-
WordPress开发函数add_thickbox()
WordPress开发函数add_thickbox(),使用默认的ThickBox js和css。 用法: add_thickbox() 描述 如果需要更改任何设置,可以通过类似于media-upload.js的另一个js文件来完成。该文件应该需要array(‘ thickbox ‘)来确保它在之后加载。 来源 文件: wp-includes/general-template.php function add_thickbox() { wp_enqueue_script(…
-
WordPress开发函数adjacent_posts_rel_link()
WordPress开发函数adjacent_posts_rel_link(),显示与当前文章相邻的文章的关系链接。 用法: adjacent_posts_rel_link( string $title = ‘%title’, bool $in_same_term = false, int[]|string $excluded_terms = ”, string $taxonomy = ‘category’ ) 参数: $title (s…
-
WordPress开发函数adjacent_posts_rel_link_wp_head()
WordPress开发函数adjacent_posts_rel_link_wp_head(),为单个帖子页面显示与当前帖子相邻的帖子的关系链接。 用法: adjacent_posts_rel_link_wp_head() 描述: 这意味着要附加到像’ wp_head ‘这样的操作。不要在插件或主题模板中直接调用它。 参见also adjacent_posts_rel_link () 来源: 文件: wp-includes/link-template.php functio…
-
WordPress功能函数adjacent_post_link()
WordPress功能函数adjacent_post_link(),显示相邻的post链接。 用法: adjacent_post_link( string $format, string $link, bool $in_same_term = false, int[]|string $excluded_terms = ”, bool $previous = true, string $taxonomy = ‘category’ ) 描述: 可以是下一篇文章链接…
-
WordPress功能函数admin_color_scheme_picker()
WordPress功能函数admin_color_scheme_picker(),显示默认的管理配色方案选择器(在user-edit.php中使用) 用法: admin_color_scheme_picker( int $user_id ) 参数: $user_id (int) (必需) 用户ID。 来源: 文件:wp-admin/includes/misc.php function admin_color_scheme_picker( $user_id ) { global $_wp_admi…
-
WordPress开发函数admin_url()
WordPress开发函数admin_url(),检索到当前站点管理区域的URL。 用法: admin_url( string $path = ”, string $scheme = ‘admin’ ) 参数: $path (string) (可选) 相对于管理URL的路径。默认的“管理”。 默认值: ” $scheme (string) (可选) 使用的方案。默认是“admin”,它遵循force_ssl_admin()和is_ssl()。可以通…
-
WordPress开发函数allowed_http_request_hosts()
WordPress开发函数allowed_http_request_hosts(),Mark允许对HTTP请求安全的重定向主机。 用法: allowed_http_request_hosts( bool $is_external, string $host ) 描述 附加到’ http_request_host_is_external ‘过滤器。 参数 $is_external (bool) (必需) $host (string) (必需) 返回 (bool) 来源 文件…
-
WordPress功能函数allowed_tags()
WordPress功能函数allowed_tags(),使用属性显示HTML格式的所有允许的标签。 用法: allowed_tags() 描述 这对于在注释区域中显示很有用,该区域支持哪些元素和属性。以及任何想要显示它的插件。 返回 (string)HTML允许标签实体编码。 来源 文件: wp-includes/general-template.php function allowed_tags() { global $allowedtags; $allowed = ”; fore…
-
WordPress开发函数allow_subdirectory_install()
WordPress开发函数allow_subdirectory_install(),允许安装子目录。 用法: allow_subdirectory_install() 返回 (bool) 是否允许子目录安装 来源: 文件: wp-admin/includes/network.php function allow_subdirectory_install() { global $wpdb; /** * Filters whether to enable the subdirectory insta…
-
WordPress开发函数apply_filters_ref_array()
WordPress开发函数apply_filters_ref_array(),调用已添加到筛选器钩子的回调函数,并指定数组中的参数。 用法: apply_filters_ref_array( string $tag, array $args ) 描述: 参见also apply_filters():这个函数是相同的,但是传递给与$tag挂钩的函数的参数是使用数组提供的。 参数 $tag (string) (必需) 过滤器钩子的名称。 $args (array) (必需) 提供给与$tag挂钩的函…
-
WordPress功能函数apply_shortcodes()
WordPress功能函数apply_shortcodes(),搜索内容的短码和过滤短码通过他们的钩子。 用法: apply_shortcodes( string $content, bool $ignore_html = false ) 描述 这个函数是do_shortcode()的别名。 参见also do_shortcode () 参数: $content (string) (必需) 搜索短码的内容。 $ignore_html (bool) (可选) 当为true时,HTML元素内的短代码…
-
WordPress功能函数array_replace_recursive()
WordPress功能函数array_replace_recursive(),php不可知版本的{@link array_replace_recursive()}。 描述 array_replace_recursive()函数是一个PHP 5.3函数。WordPress目前支持PHP 5.2,所以这个方法是PHP 5.2的一个解决方案。 注意:array_replace_recursive()支持无限参数,但对于我们的用例,我们只需要支持两个参数。 一旦WordPress将PHP 5.3.0作为…