add_shortcode

函数
add_shortcode ( $tag, $callback )
参数
  • (string) $tag Shortcode tag to be searched in post content.
    Required:
  • (callable) $callback The callback function to run when the shortcode is found. Every shortcode callback is passed three parameters by default, including an array of attributes (`$atts`), the shortcode content or null if not set (`$content`), and finally the shortcode tag itself (`$shortcode_tag`), in that order.
    Required:
定义位置
相关方法
do_shortcodehas_shortcodewp_audio_shortcodeapply_shortcodesdo_shortcode_tag
引入
2.5.0
弃用
-

add_shortcode – 向WordPress注册一个短代码。短码是一种创建可重复使用的小块代码的方式,可以让内容创建者很容易地插入到内容中: 该函数需要两个参数:短码标签和一个回调函数来生成短码输出。

添加一个新的短码。

应该注意通过前缀或其他方式确保被添加的短码标签是唯一的,并且不会与其他已经添加的短码标签冲突。如果出现重复的标签,最后加载的标签将被优先考虑。

function add_shortcode( $tag, $callback ) {
	global $shortcode_tags;

	if ( '' === trim( $tag ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			__( 'Invalid shortcode name: Empty name given.' ),
			'4.4.0'
		);
		return;
	}

	if ( 0 !== preg_match( '@[<>&/[]x00-x20=]@', $tag ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: 1: Shortcode name, 2: Space-separated list of reserved characters. */
				__( 'Invalid shortcode name: %1$s. Do not use spaces or reserved characters: %2$s' ),
				$tag,
				'& / < > [ ] ='
			),
			'4.4.0'
		);
		return;
	}

	$shortcode_tags[ $tag ] = $callback;
}

常见问题

FAQs
查看更多 >