| Server IP : 119.59.104.26 / Your IP : 216.73.216.220 Web Server : Apache/2 System : Linux ns69.hostinglotus.net 4.18.0-553.141.2.el8_10.x86_64 #1 SMP Wed Jul 8 10:28:18 EDT 2026 x86_64 User : com12370 ( 1517) PHP Version : 7.2.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/com12370/public_html/wp-content/themes/MIXThemes/framework/functions/ |
Upload File : |
<?php
/**
* Post Template Functions.
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly
/**
* Get the post time
*/
if( ! function_exists( 'tie_get_time' )){
function tie_get_time( $return = false ){
$time_format = tie_get_option( 'time_format' );
// Date is disabled globally
if( $time_format == 'none' ){
return false;
}
$post = get_post();
// Date Type
$modified_time = tie_get_option( 'time_type' ) == 'modified' ? true : false;
// Human Readable Post Dates
if( $time_format == 'modern' ){
$time_now = current_time( 'timestamp' );
$post_time = $modified_time ? get_the_modified_time( 'U' ) : get_the_time( 'U' );
if ( $post_time > ( $time_now - MONTH_IN_SECONDS ) ){
$since = sprintf( esc_html__( '%s ago', TIELABS_TEXTDOMAIN ), human_time_diff( $post_time, $time_now ) );
}
else {
$since = $modified_time ? get_the_modified_date() : get_the_date();
}
}
// Default date format
else{
$since = $modified_time ? get_the_modified_date() : get_the_date();
}
$since = apply_filters( 'TieLabs/post_date', $since );
// The date markup
$post_time = '<span class="date meta-item fa-before">'. $since .'</span>';
if( $return ){
return $post_time;
}
echo ( $post_time );
}
}
/**
* Get score
*/
if( ! function_exists( 'tie_get_score' )){
function tie_get_score( $size = 'small' ){
if( ! TIELABS_TAQYEEM_IS_ACTIVE || ! tie_get_postdata( 'taq_review_position' ) ){
return;
}
$style = tie_get_postdata( 'taq_review_style' );
$total_score = tie_get_postdata( 'taq_review_score', 0 );
$review_output = '';
$image_style = taqyeem_get_option( 'rating_image' ) ? taqyeem_get_option( 'rating_image' ) : 'stars';
// Show the stars
if( $style == 'stars' ){
// Small stars size
if( $size != 'small' ){
$review_output .= '
<div class="post-rating image-'. $image_style .'">
<div class="stars-rating-bg"></div><!-- .stars-rating-bg -->
<div class="stars-rating-active" data-rate-val="'. $total_score. '%" data-lazy-percent="1">
<div class="stars-rating-active-inner">
</div><!--.stars-rating-active-inner /-->
</div><!--.stars-rating-active /-->
</div><!-- .post-rating -->
';
}
}
// Percentage and point style
else{
$review_class = '';
$percentage = '';
// Percentage
if( $style == 'percentage' ){
$review_class = ' review-percentage';
$post_score = round( $total_score, 0 );
$percentage = '%';
}
// Points
else{
$post_score = 0;
if( $total_score != 0 ){
$post_score = round( $total_score/10, 1 );
}
}
if( $size != 'stars' ){
if( $size == 'small' ){
$review_output .= '<div class="digital-rating-static" data-lazy-percent="1" data-rate-val="'. $total_score .'%"><strong>'. $post_score . $percentage .'</strong></div>';
}
else{
$review_output .= '
<div class="digital-rating">
<div data-score="'. $post_score .'" data-pct="'. $total_score .'" data-lazy-pie="1" class="pie-wrap'. $review_class .'">
<svg width="40" height="40" class="pie-svg">
<circle r="19" cx="20" cy="20" fill="transparent" stroke-dasharray="119.38" stroke-dashoffset="0" class="circle_base"></circle>
<circle r="19" cx="20" cy="20" fill="transparent" stroke-dasharray="119.38" stroke-dashoffset="0" class="circle_bar"></circle>
</svg>
</div>
</div><!-- .digital-rating -->
';
}
}
}
return $review_output;
}
}
/**
* Print the score
*/
if( ! function_exists( 'tie_the_score' )){
function tie_the_score( $size = 'small' ){
echo tie_get_score( $size );
}
}
/**
* Get The Taxonomy Slug
*/
if( ! function_exists( 'tie_get_taxonomy_slug' )){
function tie_get_taxonomy_slug(){
$current_post_type = get_post_type();
// Standard Post
if( $current_post_type == 'post' ){
return 'category';
}
// Custom Post type
$taxonomies = get_object_taxonomies( $current_post_type );
if( ! empty( $taxonomies ) && is_array( $taxonomies ) ){
return $taxonomies[0];
}
return false;
}
}
/**
* Get the Primary category object
*/
if( ! function_exists( 'tie_get_primary_category' )){
function tie_get_primary_category(){
if( get_post_type() != 'post' ){
return;
}
// Get the primary category
$category = (int) tie_get_postdata( 'tie_primary_category' );
if( ! empty( $category ) && TIELABS_WP_HELPER::term_exists( $category, 'category' ) ){
$get_the_category = TIELABS_WP_HELPER::get_term_by( 'id', $category, 'category' );
$primary_category = array( $get_the_category );
}
// Get the first assigned category
else{
$get_the_category = get_the_category();
if( ! empty( $get_the_category[0] ) ){
$primary_category = array( $get_the_category[0] );
}
}
if( ! empty( $primary_category[0] )){
return $primary_category;
}
}
}
/**
* Get the Primary category id
*/
if( ! function_exists( 'tie_get_primary_category_id' )){
function tie_get_primary_category_id(){
$primary_category = tie_get_primary_category();
if( ! empty( $primary_category[0]->term_id )){
return $primary_category[0]->term_id;
}
return false;
}
}
/**
* Get the Post Category HTML
*/
if( ! function_exists( 'tie_get_category' )){
function tie_get_category( $before = '<span class="post-cat-wrap">', $after = '</span>', $primary = true, $plain = false ){
// Return if it is not a Supported Post Type
/*
if( ! TIELABS_HELPER::is_supported_post_type() ){
return;
}
*/
$output = '';
$output .= $before;
// Get Taxonomy
$taxonomy_slug = tie_get_taxonomy_slug();
// If the primary is true || This will return false if the Post type != post
if( ! empty( $primary ) ){
$categories = tie_get_primary_category();
}
// Show all post's categories
if( empty( $categories ) ){
if( ! empty( $taxonomy_slug ) ){
$categories = get_the_terms( get_the_id(), $taxonomy_slug );
}
}
// Display the categories
if( ! empty( $categories ) && is_array( $categories )){
foreach ( $categories as $category ){
if( $plain ){
$output .= '<span class="post-cat tie-cat-'.$category->term_id.'">' . $category->name.'</span>';
}
else{
$output .= '<a class="post-cat tie-cat-'.$category->term_id.'" href="' . TIELABS_WP_HELPER::get_term_link( $category->term_id, $taxonomy_slug ) . '">' . $category->name.'</a>';
}
}
}
return $output .= $after;
}
}
/**
* Print the post category HTML
*/
if( ! function_exists( 'tie_the_category' )){
function tie_the_category( $before = false, $after = false, $primary = true, $plain = false ){
echo tie_get_category( $before, $after, $primary, $plain );
}
}
/**
* Get Custom Excerpt
*/
if( ! function_exists( 'tie_get_excerpt' )){
function tie_get_excerpt( $limit ){
add_filter( 'excerpt_length', 'tie_excerpt_max_length', 999 );
$excerpt = get_the_excerpt();
$trim_type = tie_get_option( 'trim_type' );
$limit = ! empty( $limit ) ? $limit : 20;
// For Chinese Language
if( $trim_type == 'chars' ){
if ( function_exists( 'mb_substr' ) ) {
return mb_substr( $excerpt, 0, $limit );
}
return substr( $excerpt, 0, $limit );
}
return wp_trim_words( $excerpt, $limit, '…' );
}
}
if( ! function_exists( 'tie_excerpt_max_length' )){
function tie_excerpt_max_length(){
return 200;
}
}
/**
* Print the modified excerpt
*/
if( ! function_exists( 'tie_the_excerpt' )){
function tie_the_excerpt( $limit ){
echo tie_get_excerpt( $limit );
}
}
/**
* Change The Title Length
*/
if( ! function_exists( 'tie_get_title' )){
function tie_get_title( $limit = false, $trim_type = false ){
$title = get_the_title();
// Check if the post has title-
if( $title == '' ){
$title = esc_html__( '(no title)', TIELABS_TEXTDOMAIN );
}
// If no limit return the original title-
if( empty( $limit )){
return $title;
}
// Get the rim type-
$trim_type = $trim_type ? $trim_type : tie_get_option( 'trim_type' );
// For Chinese Language
if( $trim_type == 'chars' ){
if ( function_exists( 'mb_substr' ) ) {
return mb_substr( $title, 0, $limit );
}
return substr( $title, 0, $limit );
}
return wp_trim_words( $title, $limit, '…' );
}
}
/**
* Print the modified title
*/
if( ! function_exists( 'tie_the_title' )){
function tie_the_title( $limit = false, $trim_type = false ){
echo tie_get_title( $limit, $trim_type );
}
}
/**
* Get Post info section
*/
if( ! function_exists( 'tie_get_post_meta' )){
function tie_get_post_meta( $args = '', $before = false, $after = false ){
// For posts and custom post types
$disable_on = apply_filters( 'TieLabs/post_meta/disable_post_types', array(
'page',
'product'
));
if( ! empty( $disable_on ) && is_array( $disable_on ) && in_array( get_post_type(), $disable_on ) ){
return;
}
// Defaults
$args = wp_parse_args( $args, array(
'trending' => false,
'author' => true,
'date' => true,
'comments' => true,
'views' => true,
'review' => false,
'avatar' => false,
'reading' => false,
'twitter' => false,
'email' => false,
));
// If this is not a singular page -> Check the global disable meta options
if( ! is_single() ){
$meta_prefix_slug = 'blocks';
// TIE_IS_ARCHIVE for the Ajax requests | defined in archive_load_more();
if( is_archive() || is_search() || ( defined( 'TIE_IS_ARCHIVE' ) && TIE_IS_ARCHIVE ) ){
$meta_prefix_slug = 'archives';
}
$args['author'] = tie_get_option( $meta_prefix_slug .'_disable_author_meta' ) ? false : $args['author'];
$args['comments'] = tie_get_option( $meta_prefix_slug .'_disable_comments_meta' ) ? false : $args['comments'];
$args['views'] = tie_get_option( $meta_prefix_slug .'_disable_views_meta' ) ? false : $args['views'];
}
// Allow making changes on the $args
$args = apply_filters( 'TieLabs/post_meta/args', $args );
extract( $args );
// Prepare the post info section
$post_meta = $before.'<div class="post-meta clearfix">';
// Trending
if( ! empty( $trending ) ){
$post_meta .= tie_get_trending_icon( 'trending-sm meta-item' );
}
// Review score
if( ! empty( $review ) ){
$post_meta .= tie_get_score( 'stars' );
}
// Author
if( ! empty( $author ) ){
$post_meta .= tie_get_author( $args );
}
// Date
if( ! empty( $date ) ){
$post_meta .= tie_get_time( true );
}
// Post info right area
if( ! empty( $comments ) || ! empty( $views ) || ! empty( $reading ) ){
$post_meta .= apply_filters( 'TieLabs/post_meta_before_extra_info', '<div class="tie-alignright">' );
// Comments
if( ! empty( $comments ) && ( get_comments_number() || comments_open() ) ){
// With Link
//$post_meta .= '<span class="meta-comment meta-item"><a href="'.get_comments_link().'"><span class="fa fa-comments" aria-hidden="true"></span> '. get_comments_number_text( '0', '1', '%' ) .'</a></span>';
// Without Link - Fix Accessability issues
$post_meta .= '<span class="meta-comment meta-item fa-before">'. get_comments_number_text( '0', '1', '%' ) .'</span>';
}
// Number of views
if( ! empty( $views ) ){
$post_meta .= TIELABS_POSTVIEWS::get_views();
}
// Reading Time
if( ! empty( $reading ) ){
$post_meta .= tie_reading_time();
}
$post_meta .= apply_filters( 'TieLabs/post_meta_after_extra_info', '</div>' );
}
$post_meta .= '</div><!-- .post-meta -->'.$after;
return $post_meta;
}
}
/**
* Create the list of authors
*/
if( ! function_exists( 'tie_get_post_authors' ) ){
function tie_get_post_authors(){
// Co-Authors Plus
if( function_exists( 'get_coauthors' ) ){
return $post_authors = get_coauthors( get_the_ID() );
}
// Standard Authors
return array( get_userdata( get_the_author_meta( 'ID' ) ) );
}
}
/**
* We need to call the get_the_author as it contains the the_author filter which is used by some plugins such as the WPML plugin.
* get_the_author function get the data from the global $authordata
*/
if( ! function_exists( 'tie_get_the_author' ) ){
function tie_get_the_author( $author = false ){
global $authordata;
$authordata_old = $authordata;
$authordata = $author;
$display_name = get_the_author();
$authordata = $authordata_old;
return $display_name;
}
}
/**
* Get the authors of the post
*/
if( ! function_exists( 'tie_get_author' ) ){
function tie_get_author( $args ){
// Holds the return data
$post_meta = '';
// Authors count increment var
$authors_count = 0;
// Get the Authors IDs
$post_authors = tie_get_post_authors();
// Number of Authors
$authors_number = count( $post_authors );
// Class for the meta
$author_meta_class = ( $authors_number > 1 ) ? 'multiple-authors' : 'single-author';
// Show Avatars ?
if( ! empty( $args['avatar'] ) && get_option( 'show_avatars' ) ){
$show_avatars = true;
$author_icon = '';
$author_meta_class .= ' with-avatars';
}
else{
$show_avatars = false;
$author_icon = '<span class="fa fa-user" aria-hidden="true"></span> ';
$author_meta_class .= ' no-avatars';
}
// We have authors list
if ( is_array( $post_authors ) && ! empty( $post_authors ) ) {
$post_meta .= '<span class="'.$author_meta_class.'">';
// Authors Loop
foreach ( $post_authors as $author ) {
// Profile URL
$profile = tie_get_author_profile_url( $author );
// Author name
$display_name = tie_get_the_author( $author );
// Authors count increment
$authors_count++;
//
$post_meta .= '<span class="meta-item meta-author-wrapper">';
// Show the author's avatar
if( $show_avatars ){
$post_meta .= '
<span class="meta-author-avatar">
<a href="'. $profile .'">'. get_avatar( $author->user_email, 140, '', sprintf( esc_html__( 'Photo of %s', TIELABS_TEXTDOMAIN ), $display_name ) ) .'</a>
</span>
';
}
// Author Name
$post_meta .= '
<span class="meta-author">'.
'<a href="'. $profile .'" class="author-name" title="'. $display_name .'">'. $author_icon . $display_name .'</a>
</span>
';
// Twitter icon
$author_twitter = get_the_author_meta( 'twitter', $author->ID );
if( ! empty( $args['twitter'] ) && ! empty( $author_twitter )){
$post_meta .= '
<a href="'. esc_url( $author_twitter ) .'" class="author-twitter-link" target="_blank" rel="nofollow noopener" title="'. esc_html__( 'Follow on Twitter', TIELABS_TEXTDOMAIN ) .'">
<span class="fa fa-twitter" aria-hidden="true"></span>
<span class="screen-reader-text">'. esc_html__( 'Follow on Twitter', TIELABS_TEXTDOMAIN ) .'</span>
</a>
';
}
// Email icon
if( ! empty( $args['email'] ) && ! empty( $author->user_email ) ){
$post_meta .= '
<a href="mailto:'. $author->user_email .'" class="author-email-link" target="_blank" rel="nofollow noopener" title="'. esc_html__( 'Send an email', TIELABS_TEXTDOMAIN ) .'">
<span class="fa fa-envelope" aria-hidden="true"></span>
<span class="screen-reader-text">'. esc_html__( 'Send an email', TIELABS_TEXTDOMAIN ) .'</span>
</a>
';
}
// Display the seprator in the single Post Page only
if( is_singular( 'post' ) && ! $show_avatars ){
if( $authors_count != $authors_number && $authors_count != $authors_number - 1 ){
$post_meta .= '<span class="co-plus-sep">,</span>';
}
}
$post_meta .= '</span>';
if( is_singular( 'post' ) && ! $show_avatars ){
if( $authors_count == $authors_number - 1 ){
$post_meta .= '<span class="co-plus-and-sep meta-item">'. esc_html__( 'and', TIELABS_TEXTDOMAIN ) .'</span>';
}
}
}
$post_meta .= '</span>';
}
return $post_meta;
}
}
/**
* Print the Post info section
*/
if( ! function_exists( 'tie_the_post_meta' )){
function tie_the_post_meta( $args = '', $before = false, $after = false ){
echo tie_get_post_meta( $args, $before, $after );
}
}
/**
* Get the Trending Icon
*/
if( ! function_exists( 'tie_get_trending_icon' )){
function tie_get_trending_icon( $class = false, $before = false, $after = false ){
// Check if it is not trending
if( ! tie_get_postdata( 'tie_trending_post' ) ){
return;
}
return $before . '<span class="trending-post fa fa-bolt '.$class.'" aria-hidden="true"></span>' . $after;
}
}
/**
* Dispaly the Trending Icon
*/
if( ! function_exists( 'tie_the_trending_icon' )){
function tie_the_trending_icon( $class = false, $before = false, $after = false ){
echo tie_get_trending_icon( $class, $before, $after );
}
}
/**
* Previous Post
*/
if( ! function_exists( 'tie_prev_post' )){
function tie_prev_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ){
tie_adjacent_post( $in_same_term, $excluded_terms, $previous = true, $taxonomy );
}
}
/**
* Next Post
*/
if( ! function_exists( 'tie_next_post' )){
function tie_next_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ){
tie_adjacent_post( $in_same_term, $excluded_terms, $previous = false, $taxonomy );
}
}
/**
* Custom Next and prev posts
*/
if( ! function_exists( 'tie_adjacent_post' )){
function tie_adjacent_post( $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ){
$adjacent_post = get_adjacent_post( $in_same_term, $excluded_terms, $previous, $taxonomy );
if( ! empty( $adjacent_post ) ){
$adjacent = $previous ? 'prev' : 'next';
$image_path = '';
$image_id = get_post_thumbnail_id( $adjacent_post->ID );
$image_data = wp_get_attachment_image_src( $image_id, TIELABS_THEME_SLUG.'-image-large' );
if( ! empty( $image_data[0] )){
$image_path = $image_data[0];
}
?>
<div class="tie-col-xs-6 <?php echo esc_attr( $adjacent ) ?>-post">
<a href="<?php the_permalink( $adjacent_post->ID ); ?>" style="background-image: url(<?php echo esc_url( $image_path ) ?>)" class="post-thumb" rel="<?php echo esc_attr( $adjacent ) ?>">
<div class="post-thumb-overlay-wrap">
<div class="post-thumb-overlay">
<span class="icon"></span>
</div>
</div>
</a>
<a href="<?php the_permalink( $adjacent_post->ID ); ?>" rel="<?php echo esc_attr( $adjacent ) ?>">
<h3 class="post-title"><?php echo ( $adjacent_post->post_title ) ?></h3>
</a>
</div>
<?php
}
}
}
/**
* Get Post reading time
*/
if( ! function_exists( 'tie_reading_time' )){
function tie_reading_time(){
$post_content = get_post()->post_content;;
$post_content = TIELABS_HELPER::strip_shortcodes( $post_content );
$post_content = strip_shortcodes( strip_tags( $post_content ) );
$words_count = count(preg_split('/\s+/u', $post_content, null, PREG_SPLIT_NO_EMPTY));
$words_per_min = apply_filters( 'TieLabs/words_per_min', 250 );
$reading_time = floor( $words_count / $words_per_min );
if( $reading_time < 1){
$result = esc_html__( 'Less than a minute', TIELABS_TEXTDOMAIN );
}
elseif( $reading_time > 60 ){
$result = sprintf( esc_html__( '%s hours read', TIELABS_TEXTDOMAIN ), number_format_i18n( floor( $reading_time / 60 ) ) );
}
else if ( $reading_time == 1 ){
$result = esc_html__( '1 minute read', TIELABS_TEXTDOMAIN );
}
else {
$result = sprintf( esc_html__( '%s minutes read', TIELABS_TEXTDOMAIN ), number_format_i18n( $reading_time ) );
}
$result = apply_filters( 'TieLabs/reading_time', $result, $reading_time, $words_per_min, $words_count );
return '<span class="meta-reading-time meta-item"><span class="fa fa-bookmark" aria-hidden="true"></span> '. $result .'</span> ';
}
}
/**
* Get terms as plain text seprated with commas
*/
if( ! function_exists( 'tie_get_plain_terms' )){
function tie_get_plain_terms( $post_id, $term ){
$post_terms = get_the_terms( $post_id, $term );
$terms = array();
if( ! empty( $post_terms ) && is_array( $post_terms ) ){
foreach ( $post_terms as $term ) {
$terms[] = $term->name;
}
$terms = implode( ',', $terms );
}
return $terms;
}
}
/**
* Build Related Posts Query Args
*/
if( ! function_exists( 'tie_get_related_posts_args' )){
function tie_get_related_posts_args( $query_type = false, $order = false, $number, $do_not_duplicate = false ){
$post_id = get_the_id();
$do_not_duplicate = ! empty( $GLOBALS['tie_single_do_not_duplicate'] ) ? $GLOBALS['tie_single_do_not_duplicate'] : array( $post_id );
$args = array(
'post__not_in' => $do_not_duplicate,
'posts_per_page' => $number,
'no_found_rows' => true,
'post_status' => 'publish',
'ignore_sticky_posts' => true,
'update_post_term_cache' => false,
);
// Posts order
if( $order == 'rand' ){
$args['orderby'] = 'rand';
}
elseif( $order == 'views' && tie_get_option( 'tie_post_views' )){
$args['orderby'] = 'meta_value_num';
$args['meta_key'] = apply_filters( 'TieLabs/views_meta_field', 'tie_views' );
}
elseif( $order == 'popular' ){
$args['orderby'] = 'comment_count';
}
elseif( $order == 'modified' ){
$args['orderby'] = 'modified';
$args['order'] = 'ASC';
}
// Get related posts by author
if( $query_type == 'author' ){
$args['author'] = get_the_author_meta( 'ID' );
}
// Get related posts by tags
elseif( $query_type == 'tag' ){
$tags_ids = array();
$post_tags = get_the_terms( $post_id, 'post_tag' );
if( ! empty( $post_tags ) ){
foreach( $post_tags as $individual_tag ){
$tags_ids[] = $individual_tag->term_id;
}
$args['tag__in'] = $tags_ids;
}
}
// Get related posts by categories
else{
$category_ids = array();
$categories = get_the_category( $post_id );
foreach( $categories as $individual_category ){
$category_ids[] = $individual_category->term_id;
}
$args['category__in'] = $category_ids;
}
return $args;
}
}
/**
* Update the single Post page do not duplicate array
*/
if( ! function_exists( 'tie_single_post_do_not_dublicate' )){
function tie_single_post_do_not_dublicate( $post_id = false ){
if( empty( $post_id ) ){
$post_id = get_the_id();
}
if( empty( $GLOBALS['tie_single_do_not_duplicate'] ) ){
$GLOBALS['tie_single_do_not_duplicate'] = array();
}
if( is_array( $post_id ) ){
foreach ( $post_id as $id ){
$GLOBALS['tie_single_do_not_duplicate'][ $id ] = $id;
}
}
else{
$GLOBALS['tie_single_do_not_duplicate'][ $post_id ] = $post_id;
}
}
}
/**
* Read More button
*/
if( ! function_exists( 'tie_get_more_button' )){
add_filter( 'the_content_more_link', 'tie_get_more_button' );
function tie_get_more_button(){
// Check if the Read More button is hidden on mobile
if( TIELABS_HELPER::is_mobile_and_hidden( 'read_more_buttons' ) ){
return;
}
return apply_filters( 'TieLabs/more_link_button', '<a class="more-link button" href="' . get_permalink() . '">'. esc_html__( 'Read More »', TIELABS_TEXTDOMAIN ) .'</a>' );
}
}
/**
* Print the Read More button
*/
if( ! function_exists( 'tie_the_more_button' )){
function tie_the_more_button(){
echo tie_get_more_button();
}
}