image_align_input_fields()

最后更新于:2021-11-27 06:11:04

image_align_input_fields( GC_Post$post, string$checked=”)

Retrieve HTML for the image alignment radio buttons with the specified one checked.

参数

$post

(GC_Post) (Required)

$checked

(string) (Optional)

Default value: ”

响应

(string)

源文件

文件: gc-admin/includes/media.php

function image_align_input_fields( $post, $checked = '' ) {

	if ( empty( $checked ) ) {
		$checked = get_user_setting( 'align', 'none' );
	}

	$alignments = array(
		'none'   => __( 'None' ),
		'left'   => __( 'Left' ),
		'center' => __( 'Center' ),
		'right'  => __( 'Right' ),
	);

	if ( ! array_key_exists( (string) $checked, $alignments ) ) {
		$checked = 'none';
	}

	$out = array();

	foreach ( $alignments as $name => $label ) {
		$name  = esc_attr( $name );
		$out[] = "<input type='radio' name='attachments[{$post->ID}][align]' id='image-align-{$name}-{$post->ID}' value='$name'" .
			( $checked == $name ? " checked='checked'" : '' ) .
			" /><label for='image-align-{$name}-{$post->ID}' class='align image-align-{$name}-label'>$label</label>";
	}

	return implode( "n", $out );
}