LLMS_Metabox_Basic_Editor_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.basic.editor.php

	public function output() {

		parent::output(); ?>

		<div
			data-name="<?php echo esc_attr( $this->field['id'] ); ?>"
			class="llms-editable-title llms-basic-editor llms-input-formatting"
			data-attribute="title"
			<?php if ( array_key_exists( 'placeholder', $this->field ) && $this->field['placeholder'] ) : ?>
				data-placeholder="<?php echo esc_attr( $this->field['placeholder'] ); ?>"
			<?php endif; ?>
		><?php echo wp_kses( $this->meta, LLMS_ALLOWED_HTML_PRICES ); ?></div>

		<input type="hidden" name="<?php echo esc_attr( $this->field['id'] ); ?>" value="<?php echo esc_attr( $this->meta ); ?>" />

		<?php
		parent::close_output();
	}


Top ↑

User Contributed Notes User Contributed Notes

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