Popmake_Fields::field_label( $args )


Description Description


Source Source

File: includes/class-popmake-fields.php

	public function field_label( $args ) {
		if ( ! empty( $args['label'] ) ) { ?>
			<label for="<?php echo esc_attr( $args['id'] ); ?>"><?php
				echo esc_html( $args['label'] );
				if ( $args['doclink'] != '' ) { ?>
					<a href="<?php echo esc_url( $args['doclink'] ); ?>" target="_blank" class="pum-doclink dashicons dashicons-editor-help"></a><?php
				} ?>
			</label><?php
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

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