Done !
| Server IP : 51.91.236.255 / Your IP : 216.73.217.126 Web Server : Apache System : Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chloega ( 433239) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/chloega/www/wp-content/themes/tempera/content/ |
Upload File : |
<?php
/**
* The default template for displaying content
*
* @package Cryout Creations
* @subpackage Tempera
* @since Tempera 1.0
*/
$temperas = tempera_get_theme_options();
cryout_before_article_hook(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( (( is_sticky() && is_page_template() )?'sticky':'') ); ?>>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr ( __( 'Permalink to %s', 'tempera' ) ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<?php cryout_post_title_hook(); ?>
<div class="entry-meta">
<?php cryout_post_meta_hook(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php cryout_post_before_content_hook();
?><?php if ( is_archive() || is_search() || is_page() ) : // Display excerpts for archives, search and page templates ?>
<?php if ( $temperas['tempera_excerptarchive'] != "Full Post" ){ ?>
<div class="entry-summary">
<?php tempera_set_featured_thumb(); ?>
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php } else { ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'tempera' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php } ?>
<?php else :
if ( is_sticky() && ($temperas['tempera_excerptsticky'] == "Full Post") ) $sticky_test=1; else $sticky_test=0;
if ( ($temperas['tempera_excerpthome'] != "Full Post") && ($sticky_test==0) ){ ?>
<div class="entry-summary">
<?php tempera_set_featured_thumb(); ?>
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php } else { ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'tempera' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php }
endif; ?>
<footer class="entry-meta">
<?php cryout_post_after_content_hook(); ?>
</footer>
</article><!-- #post-<?php the_ID(); ?> -->
<?php
cryout_after_article_hook();