uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
public_html
/
.
/
.
/
wp-content
/
plugins
/
.
/
charitable
/
templates
/
widgets
/
campaigns.php
/
/
<?php /** * Display a list of campaigns. * * Override this template by copying it to yourtheme/charitable/widgets/campaigns.php * * @package Charitable/Templates/Widgets * @author WP Charitable LLC * @since 1.0.0 * @version 1.4.18 */ $campaigns = $view_args['campaigns']; $show_thumbnail = isset( $view_args['show_thumbnail'] ) ? $view_args['show_thumbnail'] : true; $thumbnail_size = apply_filters( 'charitable_campaign_widget_thumbnail_size', 'medium' ); if ( ! $campaigns->have_posts() ) : return; endif; echo $view_args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped if ( ! empty( $view_args['title'] ) ) : echo $view_args['before_title'] . $view_args['title'] . $view_args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped endif; ?> <ol class="campaigns"> <?php while ( $campaigns->have_posts() ) : $campaigns->the_post(); $campaign = new Charitable_Campaign( get_the_ID() ); ?> <li class="campaign"> <?php if ( $show_thumbnail && has_post_thumbnail() ) : the_post_thumbnail( $thumbnail_size ); endif; ?> <h6 class="campaign-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h6> <?php if ( ! $campaign->is_endless() ) : ?> <div class="campaign-time-left"><?php echo esc_html( $campaign->get_time_left() ); ?></div> <?php endif ?> </li> <?php endwhile; ?> </ol> <?php echo $view_args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped wp_reset_postdata();
/home/batcwwjx/public_html/././wp-content/plugins/./charitable/templates/widgets/campaigns.php