Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
/**
* PDF VIew
*
* @package WP PDF Secure
*/
// get instance of embedder.
$pdf_embedder = WP_PDF_Secure::get_instance();
// process any override options/arguments passed in the url.
$args = isset( $_GET ) ? $_GET : array(); // @codingStandardsIgnoreLine
// should we enable some caching (javascript, etc.).
$should_cache = apply_filters( 'pdfemb_view_should_cache', time(), $args );
?> <!DOCTYPE html>
<html lang="en-us" id="wp-pdf-embbed" style="height: 100%;">
<head>
<link rel="profile" href="https://gmpg.org/xfn/11">
<meta name='robots' content='noindex, nofollow' />
<link rel="resource" type="application/l10n" href="<?php echo esc_url( trailingslashit( WP_PDF_SECURE_URL ) . '/assets/js/pdfjs/locale/locale.properties' ); ?>">
<?php
do_action( 'wp_pdf_viewer_head' );
?>
</head>
<body id="wppdf-iframe-body">
<?php
echo $pdf_embedder->pdfemb_shortcode_display_pdf_noncanvas_process( apply_filters( 'pdfemb_shortcode_display_args', $args ) ); //@codingStandardsIgnoreLine
do_action( 'wp_pdf_viewer_footer' );
?>
</body>
</html>