LLMS_Metabox_Button_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.button.php

	public function output() {

		global $post;

		parent::output(); ?>

		<button
				id="<?php echo esc_attr( $this->field['id'] ); ?>"
				class="<?php echo esc_attr( $this->field['class'] ); ?>"
			>
				<?php echo esc_attr( $this->field['value'] ); ?>
			</button>
		<?php
		parent::close_output();
	}


Top ↑

User Contributed Notes User Contributed Notes

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