- 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>
15 lines
730 B
PHP
Executable File
15 lines
730 B
PHP
Executable File
<!-- SELECTION -->
|
|
<div class="d-flex-start">
|
|
<p class="w-95"><?php echo __( 'Selection', $this->plugin_name ); ?>(<span id="span-selected">0</span>):</p>
|
|
<div class="d-flex-center align-items-center btn-selections">
|
|
|
|
<?php foreach ( $settings_page['bulk_actions'] as $key => $action ) : ?>
|
|
<button onclick="showModal(this)" data-label="<?php echo $action['label']; ?>" data-individual="no" data-modal="<?php echo $key; ?>" class="tooltip b-none cursor-pointer bg-none p-0 <?php echo $key; ?>">
|
|
<span class="tooltiptext small"><?php echo $action['txt']; ?></span>
|
|
<img width="15px" src="<?php echo $settings_page['admin_url'] . 'img/icon-' . $key . '.svg'; ?> ">
|
|
</button>
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
</div>
|