37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* The empty list state for an ACF field group
|
|
*
|
|
* @package ACF
|
|
*/
|
|
|
|
?><script>document.body.classList.add('acf-no-field-groups');</script>
|
|
<div class="acf-no-field-groups-wrapper">
|
|
<div class="acf-no-field-groups-inner">
|
|
<img src="<?php echo esc_url( acf_get_url( 'assets/images/empty-group.svg' ) ); ?>" />
|
|
<h2><?php esc_html_e( 'Add Your First Field Group', 'acf' ); ?></h2>
|
|
<p>
|
|
<?php
|
|
echo acf_esc_html(
|
|
sprintf(
|
|
/* translators: %s url to creating a field group page */
|
|
__( 'ACF uses <a href="%s" target="_blank">field groups</a> to group custom fields together, and then attach those fields to edit screens.', 'acf' ),
|
|
acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/creating-a-field-group/', 'docs', 'no-field-groups' )
|
|
)
|
|
);
|
|
?>
|
|
</p>
|
|
<a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=acf-field-group' ) ); ?>" class="acf-btn"><i class="acf-icon acf-icon-plus"></i> <?php esc_html_e( 'Add Field Group', 'acf' ); ?></a>
|
|
<p class="acf-small">
|
|
<?php
|
|
echo acf_esc_html(
|
|
sprintf(
|
|
/* translators: %s url to getting started guide */
|
|
__( 'New to ACF? Take a look at our <a href="%s" target="_blank">getting started guide</a>.', 'acf' ),
|
|
acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/getting-started-with-acf/', 'docs', 'no-field-groups' )
|
|
)
|
|
);
|
|
?>
|
|
</p>
|
|
</div>
|
|
</div>
|