WordPress函数文档add_site_option()

注册添加一个短标签执行钩子 描述 Adds a hook for a shortcode tag. 用法 &l…

注册添加一个短标签执行钩子

描述

Adds a hook for a shortcode tag.

用法

<?php add_shortcode$tag $func ); ?>

参数

$tag

(string) (必填) Shortcode tag to be searched in post content

默认值: None

$func

(callable) (必填) Hook to run when shortcode is found

默认值: None

返回值

(none)

示例

Simplest example of a shortcode tag using the API:
[footag foo=”bar”]

Example with nice attribute defaults:
[bartag foo=”bar”]

Example with enclosed content:
[baztag]content[/baztag]

If your plugin is designed as a class write as follows:

注意

  • The shortcode callback will be passed three arguments: the shortcode attributes, the shortcode content (if any), and the name of the shortcode.
  • There can only be one hook for each shortcode. Which means that if another plugin has a similar shortcode, it will override yours or yours will override theirs depending on which order the plugins are included and/or ran.
  • Shortcode attribute names are always converted to lowercase before they are passed into the handler function. Values are untouched.
  • Note that the function called by the shortcode should never produce output of any kind. Shortcode functions should return the text that is to be used to replace the shortcode. Producing the output directly will lead to unexpected results. This is similar to the way 过滤器 functions should behave, in that they should not produce expected side effects from the call, since you cannot control when and where they are called from.

历史

添加于 版本: 2.5

源文件

add_shortcode() 函数的代码位于 wp-includes/shortcodes.php.

相关

Shortcode API

  • Function(函数): do_shortcode()
  • Function(函数): add_shortcode()
  • Function(函数): remove_shortcode()
  • Function(函数): remove_all_shortcodes()
  • Function(函数): shortcode_atts()
  • Function(函数): strip_shortcodes()
  • Function(函数): shortcode_exists()
  • Function(函数): has_shortcode()
  • Function(函数): get_shortcode_regex()
  • Function(函数): wp_audio_shortcode()
  • Function(函数): wp_video_shortcode()
  • Filter(过滤器): no_texturize_shortcodes
  • 原文:http://codex.wordpress.org/Function_Reference/add_shortcode
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT