LLMS_Metabox_Textarea_W_Tags_Field::output()

Outputs the Html for the given field.


Return Return

(void)


Top ↑

Source Source

File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.textarea.tags.php

	public function output() {
		parent::output();
		$cols = $this->field['cols'] ?? 60;
		$rows = $this->field['rows'] ?? 4;
		?>
		<textarea
			name="<?php echo $this->field['id']; ?>"
			id="<?php echo $this->field['id']; ?>"
			cols="<?php echo $cols; ?>"
			rows="<?php echo $rows; ?>"
			><?php echo ! empty( $this->field['value'] ) ? $this->field['value'] : $this->meta; ?></textarea>
		<?php
		parent::close_output();
	}


Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.