????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/framework/testimonials/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/framework/testimonials/testimonials-helpers.php

<?php
/**
 * Helper functions for the testimonials post type
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Testimonials Functions
 */

/**
 * Returns correct thumbnail HTML for the testimonials entries
 *
 * @since 2.0.0
 */
function tb_get_testimonials_entry_thumbnail() {
    return tb_get_post_thumbnail( array(
        'size'  => 'testimonials_entry',
        'class' => 'testimonials-entry-img',
        'alt'	=> tb_get_esc_title(),
    ) );
}

/**
 * Returns testimonials archive columns
 *
 * @since 2.0.0
 */
function tb_testimonials_archive_columns() {
	return tb_get_mod( 'testimonials_entry_columns', '4' );
}

/**
 * Returns correct classes for the testimonials archive wrap
 *
 * @since 2.0.0
 */
function tb_get_testimonials_wrap_classes() {

	// Define main classes
	$classes = array( 'tb-row', 'clr' );

	// Apply filters
	apply_filters( 'tb_testimonials_wrap_classes', $classes );

	// Turninto space seperated string
	$classes = implode( " ", $classes );

	// Return
	return $classes;

}