- 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>
17 lines
253 B
PHP
Executable File
17 lines
253 B
PHP
Executable File
<?php
|
|
/**
|
|
* WP_Exception class
|
|
*
|
|
* @package WordPress
|
|
* @since 6.7.0
|
|
*/
|
|
|
|
/**
|
|
* Core base Exception class.
|
|
*
|
|
* Future, more specific, Exceptions should always extend this base class.
|
|
*
|
|
* @since 6.7.0
|
|
*/
|
|
class WP_Exception extends Exception {}
|