LLMS_Metabox_Hidden_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.hidden.php

	public function output() {

		parent::output(); ?>

		<input
			name="<?php echo $this->field['id']; ?>"
			id="<?php echo $this->field['id']; ?>"
		<?php if ( isset( $this->field['required'] ) && $this->field['required'] ) : ?>
			required="required"
		<?php endif; ?>
			type="hidden" value="<?php echo esc_attr( $this->field['value'] ); ?>">

		<?php
		parent::close_output();

	}


Top ↑

User Contributed Notes User Contributed Notes

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