- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
599 B
PHP
Executable File
18 lines
599 B
PHP
Executable File
<div class="font-import-manager-messages">
|
|
<?php if ( isset( $this->messages['error'] ) && count( $this->messages['error'] ) ) : ?>
|
|
<?php foreach ( $this->messages['error'] as $error ) : ?>
|
|
<div class="error">
|
|
<p><?php echo esc_html( $error ); ?></p>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( isset( $this->messages['success'] ) && count( $this->messages['success'] ) ) : ?>
|
|
<?php foreach ( $this->messages['success'] as $success ) : ?>
|
|
<div class="updated">
|
|
<p><?php echo esc_html( $success ); ?></p>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</div>
|