| Server IP : 74.208.236.52 / Your IP : 216.73.216.240 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/18/d194259149/htdocs/magicofmakingup/wordpress/wp-content/themes/social/ |
Upload File : |
<?php
/**
* Hour Template
*
* This template is used when a hourly archive is shown.
*
* @package Hybrid
* @subpackage Template
*/
get_header(); ?>
<div class="hfeed content">
<?php hybrid_before_content(); // Before content hook ?>
<div class="date-info time-info">
<h1 class="date-title time-title"><?php the_time( __('g a', 'hybrid') ); ?></h1>
<div class="date-description time-description">
<p>
<?php printf( __('You are browsing the archive for %1$s.', 'hybrid'), get_the_time( __('g a', 'hybrid') ) ); ?>
</p>
</div><!-- .date-description .time-description -->
</div><!-- .date-info .time-info -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
<?php get_the_image( array( 'custom_key' => array( 'Thumbnail' ), 'default_size' => 'thumbnail' ) ); ?>
<?php hybrid_before_entry(); // Before entry hook ?>
<div class="entry-summary entry">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php hybrid_after_entry(); // After entry hook ?>
</div><!-- .hentry .post -->
<?php endwhile; ?>
<?php else: ?>
<p class="no-data">
<?php _e('Sorry, there are no posts in this archive.', 'hybrid'); ?>
</p><!-- .no-data -->
<?php endif; ?>
<?php hybrid_after_content(); // After content hook ?>
</div><!-- .content .hfeed -->
<?php get_footer(); ?>