- 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
255 B
PHP
Executable File
15 lines
255 B
PHP
Executable File
<?php
|
|
/**
|
|
* Deprecated. Use rss.php instead.
|
|
*
|
|
* @package WordPress
|
|
* @deprecated 2.1.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit();
|
|
}
|
|
|
|
_deprecated_file( basename( __FILE__ ), '2.1.0', WPINC . '/rss.php' );
|
|
require_once ABSPATH . WPINC . '/rss.php';
|