first commit

This commit is contained in:
dwindown
2025-08-21 20:39:34 +07:00
commit 58c1497171
576 changed files with 177044 additions and 0 deletions

20
vendor/wpcfto/metaboxes/fields/hint.php vendored Normal file
View File

@@ -0,0 +1,20 @@
<?php
/**
* @var $field_name
* @var $section_name
*
*/
$field_key = "data['{$section_name}']['fields']['{$field_name}']";
?>
<div class="wpcfto-hint">
<label v-html="<?php echo esc_attr($field_key); ?>['label']"></label>
<textarea name="<?php echo esc_attr($field_name); ?>"
v-bind:id="'<?php echo esc_attr($section_name . '-' . $field_name); ?>'"
v-model="<?php echo esc_attr($field_key); ?>['value']">
</textarea>
</div>