| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.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 : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversionx/wp-content/themes/stargaze/ |
Upload File : |
<?php
/**
* The template to display the attachment
*
* @package STARGAZE
* @since STARGAZE 1.0
*/
get_header();
while ( have_posts() ) {
the_post();
// Display post's content
get_template_part( apply_filters( 'stargaze_filter_get_template_part', 'templates/content', 'single-' . stargaze_get_theme_option( 'single_style' ) ), 'single-' . stargaze_get_theme_option( 'single_style' ) );
// Parent post navigation.
$stargaze_posts_navigation = stargaze_get_theme_option( 'posts_navigation' );
if ( 'links' == $stargaze_posts_navigation ) {
?>
<div class="nav-links-single<?php
if ( ! stargaze_is_off( stargaze_get_theme_option( 'posts_navigation_fixed' ) ) ) {
echo ' nav-links-fixed fixed';
}
?>">
<?php
the_post_navigation( apply_filters( 'stargaze_filter_post_navigation_args', array(
'prev_text' => '<span class="nav-arrow"></span>'
. '<span class="meta-nav" aria-hidden="true">' . esc_html__( 'Published in', 'stargaze' ) . '</span> '
. '<span class="screen-reader-text">' . esc_html__( 'Previous post:', 'stargaze' ) . '</span> '
. '<h5 class="post-title">%title</h5>'
. '<span class="post_date">%date</span>',
), 'image' ) );
?>
</div>
<?php
}
// Comments
do_action( 'stargaze_action_before_comments' );
comments_template();
do_action( 'stargaze_action_after_comments' );
}
get_footer();