- 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>
20 lines
946 B
PHP
Executable File
20 lines
946 B
PHP
Executable File
<?php
|
|
/* Prevent direct access */
|
|
defined('ABSPATH') or die("You can't access this file directly.");
|
|
?>
|
|
<div class='asp_hidden_data' style="display:none !important;">
|
|
<div class='asp_item_overlay'>
|
|
<div class='asp_item_inner'>
|
|
<?php
|
|
if (w_isset_def($style['i_res_custom_magnifierimage'], "") == "" &&
|
|
pathinfo(w_isset_def($style['i_res_magnifierimage'], "/ajax-search-pro/img/svg/magnifiers/magn4.svg"), PATHINFO_EXTENSION) == 'svg'
|
|
) {
|
|
echo file_get_contents(WP_PLUGIN_DIR . '/' . w_isset_def($style['i_res_magnifierimage'], "/ajax-search-pro/img/svg/magnifiers/magn4.svg") );
|
|
} else if (w_isset_def($style['i_res_custom_magnifierimage'], "") != "") {
|
|
echo "<img src='".$style['i_res_custom_magnifierimage']."'>";
|
|
}
|
|
?>
|
|
<?php do_action('asp_layout_in_loading', $id); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|