| Server IP : 170.10.162.208 / Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux altar19.supremepanel19.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64 User : deltahospital ( 1806) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/home/deltahospital/www/wp-content/themes/imedica/ |
Upload File : |
<?php
/**
* The template for displaying posts in the Quote post format
*
* @package WordPress
* @subpackage iMedica
* @since iMedica 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php
the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'imedica' ) );
?>
</div>
<!-- .entry-content -->
<p class="post-meta">
<?php
global $imedica_opts;
$blog_meta = $imedica_opts['imedica-blog-meta']['enabled'];
if ( $blog_meta ):
foreach ( $blog_meta as $meta => $val ) {
switch ( $meta ) {
case 'author':
echo __( 'By ', 'imedica' );
esc_url( the_author_posts_link() );
echo ' | ';
break;
case 'date':
echo esc_attr( get_the_date() );
echo ' | ';
break;
case 'like':
echo getPostLikeLink( get_the_ID(), 'span' );
echo ' | ';
break;
case 'comments':
if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) :
echo comments_popup_link( __( 'Leave a comment', 'imedica' ), __( '1 Comment ', 'imedica' ), __( '% Comments ', 'imedica' ) );
echo ' | ';
endif;
break;
case 'category':
$cat = get_the_category_list();
if ( $cat ) {
echo get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'imedica' ) );
echo ' | ';
}
break;
case 'tag':
$tags = get_the_tag_list();
if ( $tags ) {
echo get_the_tag_list( '', __( ', ', 'imedica' ) );
echo ' | ';
}
break;
}
}
if ( is_user_logged_in() ) {
edit_post_link( __( 'Edit', 'imedica' ), '<span class="edit-link">', '</span>' );
echo ' | ';
}
endif;
?>
<time datetime="<?php the_time('Y-m-d') ?>" itemprop="datePublished"></time>
<time datetime="<?php the_modified_time('d F Y') ?>" class="entry-date updated"></time>
</p>
</article><!-- #post -->