oont-contents/plugins/advanced-custom-fields/includes/admin/views/acf-taxonomy/list-empty.php
2025-02-08 15:10:23 +01:00

28 lines
1.1 KiB
PHP

<?php
/**
* The empty list state for an ACF taxonomy.
*
* @package ACF
*/
?>
<script>document.body.classList.add('acf-no-taxonomies');</script>
<div class="acf-no-taxonomies-wrapper">
<div class="acf-no-taxonomies-inner">
<img src="<?php echo esc_url( acf_get_url( 'assets/images/empty-taxonomies.svg' ) ); ?>" />
<h2><?php esc_html_e( 'Add Your First Taxonomy', 'acf' ); ?></h2>
<p><?php esc_html_e( 'Create custom taxonomies to classify post type content', 'acf' ); ?></p>
<a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=acf-taxonomy' ) ); ?>" class="acf-btn"><i class="acf-icon acf-icon-plus"></i> <?php esc_html_e( 'Add Taxonomy', '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-taxonomies' )
)
);
?>
</p>
</div>
</div>