wp_required_field_indicator

函数
wp_required_field_indicator ( No parameters )
返回值
  • (string) Indicator glyph wrapped in a `span` tag.
定义位置
相关方法
wp_required_field_messagewp_prepare_site_datawp_referer_fieldwp_redirect_admin_locationswp_resource_hints
引入
6.1.0
弃用
-

wp_required_field_indicator: 这个函数为WordPress管理面板中的表单字段添加一个必填字段指示器。它用于标记提交表单所需的字段。

为所需的表单字段分配一个视觉指示器。

function wp_required_field_indicator() {
	/* translators: Character to identify required form fields. */
	$glyph     = __( '*' );
	$indicator = '<span class="required">' . esc_html( $glyph ) . '</span>';

	/**
	 * Filters the markup for a visual indicator of required form fields.
	 *
	 * @since 6.1.0
	 *
	 * @param string $indicator Markup for the indicator element.
	 */
	return apply_filters( 'wp_required_field_indicator', $indicator );
}

常见问题

FAQs
查看更多 >