LLMS_Metabox_Search_Field::output()
outputs the Html for the given field
Contents
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.search.php
public function output() {
global $post;
parent::output(); ?>
<select
id="<?php echo esc_attr( $this->field['id'] ); ?>"
name="<?php echo esc_attr( $this->field['id'] ); ?>"
class="<?php echo esc_attr( $this->field['class'] ); ?>"
>
</select>
<?php
parent::close_output();
}
Expand full source code Collapse full source code View on GitHub