- 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>
10 lines
458 B
PHP
Executable File
10 lines
458 B
PHP
Executable File
<nav class="nav d-flex-between mt-25">
|
|
<button id="btn-first" class="button font-sm button-secondary b-none btn-dark py-5 px-10 text-uppercase mr-20 font-bold">
|
|
<?php echo __( 'First', $this->plugin_name ); ?>
|
|
</button>
|
|
<ul class="pagination d-flex-center"></ul>
|
|
<button id="btn-last" class="button font-sm button-secondary b-none btn-dark py-5 px-10 text-uppercase ml-20 font-bold">
|
|
<?php echo __( 'Last', $this->plugin_name ); ?>
|
|
</button>
|
|
</nav>
|