Files
roi-theme/wp-content/plugins/ajax-search-pro/includes/views/results/elementor/no-results.php
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

42 lines
1.2 KiB
PHP
Executable File

<?php
/* Prevent direct access */
defined('ABSPATH') or die("You can't access this file directly.");
/**
* This is the default template for the keyword suggestions
*
* !!!IMPORTANT!!!
* Do not make changes directly to this file! To have permanent changes copy this
* file to your theme directory under the "asp" folder like so:
* wp-content/themes/your-theme-name/asp/no-results.php
*
* The keyword should must always hold the 'asp_keyword' class and only
* contain the keyword text as the content.
*
* You can use any WordPress function here.
* Variables to mention:
* Array[] $s_keywords - array of the keywords
* Array[] $s_options - holding the search options
*
* You can leave empty lines for better visibility, they are cleared before output.
*
* MORE INFO: https://knowledgebase.ajaxsearchpro.com/hooks/templating/result-templating
*
* @since: 4.18
*/
?>
<div class="elementor-posts-nothing-found asp_elementor_nores">
<?php
echo wp_kses_post(
stripslashes(
\WPDRMS\ASP\Utils\Str::resolveBracketSyntax(
asp_icl_t(
'No results text' . " ($id)",
$s_options['noresultstext']
),
array( 'phrase' => $phrase )
)
)
);
?>
</div>