????

Your IP : 216.73.216.174


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/blog/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/blog/blog-entry-readmore.php

<?php
/**
 * Blog entry layout
 *
 * @package Wanderfuls WordPress theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Vars
$post_id = get_the_ID();
$format  = get_post_format( $post_id );
$text    = tb_get_mod( 'blog_entry_readmore_text' );
$text    = $text ? $text : __( 'Read More', 'tb' );

// Translate readmore text with WPML
$text = tb_translate_theme_mod( 'blog_entry_readmore_text', $text );

// Apply filters for child theming
$text = apply_filters( 'tb_post_readmore_link_text', $text ); ?>

<div class="blog-entry-readmore clr">
	<a href="<?php the_permalink(); ?>" class="theme-button" title="<?php echo $text ?>">
		<?php echo $text ?><span class="readmore-rarr hidden">&rarr;</span>
	</a>
</div>