File: //var/www/mussarq_bak2/wp-content/themes/wpnull24/framework/templates/us_grid/listing-term.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
/**
* Output one term from Grid listing
*/
global $us_grid_listing_post_atts, $us_grid_term;
$grid_layout_settings = $us_grid_listing_post_atts['grid_layout_settings'];
$overriding_link = $us_grid_listing_post_atts['overriding_link'];
$term_classes = 'w-grid-item type_term';
// Aspect ratio class
if ( us_arr_path( $grid_layout_settings, 'default.options.ratio' ) ) {
$term_classes .= ' ratio_' . us_arr_path( $grid_layout_settings, 'default.options.ratio' );
}
// Generate Overriding Link semantics to the whole grid item
$link_url = $link_atts = '';
$link_title = FALSE;
if ( $overriding_link == 'post' OR $overriding_link == 'popup_post' ) {
$link_url = apply_filters( 'the_permalink', get_term_link( $us_grid_term ) );
$link_atts .= ' rel="bookmark"';
} elseif ( $overriding_link == 'popup_post_image' ) {
$tnail_id = get_term_meta( $us_grid_term->term_id, 'thumbnail_id', TRUE );
$link_url = wp_get_attachment_image_url( $tnail_id, 'full' );
if ( $link_url ) {
// Use the Caption as a Title
$attachment = get_post( $tnail_id );
$img_title = trim( strip_tags( $attachment->post_excerpt ) );
if ( empty( $img_title ) ) {
// If not, Use the Alt
$img_title = trim( strip_tags( get_post_meta( $attachment->ID, '_wp_attachment_image_alt', TRUE ) ) );
}
if ( empty( $img_title ) ) {
// If no Alt, use the Term name
$img_title = $us_grid_term->name;
}
$link_atts .= ' ref="magnificPopupGrid" title="' . esc_attr( $img_title ) . '"';
$link_title = TRUE;
}
}
// Add aria-label if "title" attribute is absent for accessibility support
if ( ! $link_title ) {
$link_atts .= ' aria-label="' . esc_attr( strip_tags( $us_grid_term->name ) ) . '"';
}
?>
<div class="<?php echo $term_classes ?>">
<div class="w-grid-item-h">
<?php if ( $link_url ): ?>
<a class="w-grid-item-anchor" href="<?php echo esc_url( $link_url ) ?>"<?php echo $link_atts ?>></a>
<?php endif; ?>
<?php us_output_builder_elms( $grid_layout_settings, 'default', 'middle_center', 'grid_term' ); ?>
</div>
</div>
<?php