assets
data
dependencies
inc
lang
views
admin-pages
fields
partials
field-description.php
field-title.php
field-actions.php
field-code-editor.php
field-color-picker.php
field-dashicon.php
field-group.php
field-header.php
field-hidden.php
field-html.php
field-image.php
field-link.php
field-multiselect.php
field-note.php
field-repeater.php
field-select-icon.php
field-select.php
field-small-header.php
field-submit.php
field-tab-select.php
field-text-display.php
field-text-edit.php
field-text.php
field-textarea.php
field-toggle.php
field-wp-editor.php
form.php
base
broadcast
checkout
customers
dashboard-statistics
dashboard-widgets
domain
dynamic-styles
email
emails
events
invoice
legacy
limitations
memberships
payments
settings
shortcodes
sites
system-info
taxes
ui
wizards
about.php
admin-notices.php
classes.php
phpcs.xml
.gitignore
LICENSE
autoload.php
composer.json
constants.php
loco.xml
readme.txt
sunrise.php
uninstall.php
wp-multisite-waas.php
24 lines
367 B
PHP
24 lines
367 B
PHP
<?php
|
|
/**
|
|
* Title field partial view.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
?>
|
|
|
|
<?php if ($field->title && is_string($field->title)) : ?>
|
|
|
|
<span class="wu-my-1 wu-text-2xs wu-uppercase wu-font-bold wu-block">
|
|
|
|
<?php echo $field->title; ?>
|
|
|
|
<?php if ($field->tooltip) : ?>
|
|
|
|
<?php echo wu_tooltip($field->tooltip); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</span>
|
|
|
|
<?php endif; ?>
|