| Server IP : 104.21.73.115 / Your IP : 216.73.217.154 Web Server : Apache System : Linux vps42439 6.8.0-136-generic #136~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 3 16:29:11 UTC x86_64 User : dh_7hi3h9 ( 6349477) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/dh_7hi3h9/regalflower.com/wp-content/themes/ecode...../ |
Upload File : |
<?php
/**
* The template for displaying featured posts on the front page
*
* @package WordPress
* @subpackage TemplateMela
* @since TemplateMela 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <a class="post-thumbnail" href="<?php esc_url(the_permalink()); ?>">
<?php
// Output the featured image.
if ( has_post_thumbnail() ) :
if ( 'grid' == get_theme_mod( 'featured_content_layout' ) ) {
the_post_thumbnail();
} else {
the_post_thumbnail( 'tmpmela-full-width' );
}
endif;
?>
</a>
<header class="entry-header">
<?php if ( in_array( 'category', get_object_taxonomies( get_post_type() ) ) && tmpmela_categorized_blog() ) : ?>
<div class="entry-meta"> <span class="cat-links"><?php echo esc_attr(get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'ecode' ) )); ?></span> </div>
<!-- .entry-meta -->
<?php endif; ?>
<?php the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">','</a></h3>' ); ?>
</header>
<!-- .entry-header -->
</article>
<!-- #post-## ---->