| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 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/skins/default/templates/ |
Upload File : |
<?php
/**
* The default template to display the content of the single page
*
* @package STARGAZE
* @since STARGAZE 1.0
*/
?>
<article id="post-<?php the_ID(); ?>"
<?php
post_class( 'post_item_single post_type_page' );
stargaze_add_seo_itemprops();
?>
>
<?php
do_action( 'stargaze_action_before_post_data' );
stargaze_add_seo_snippets();
// Now featured image used as header's background
// Remove 'false && ' from the condition to display featured image of any page in this place
if ( false && ! stargaze_sc_layouts_showed( 'featured' ) && strpos( get_the_content(), '[trx_widget_banner]' ) === false ) {
do_action( 'stargaze_action_before_post_featured' );
stargaze_show_post_featured();
do_action( 'stargaze_action_after_post_featured' );
}
do_action( 'stargaze_action_before_post_content' );
?>
<div class="post_content entry-content">
<?php
the_content();
wp_link_pages(
array(
'before' => '<div class="page_links"><span class="page_links_title">' . esc_html__( 'Pages:', 'stargaze' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'stargaze' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
)
);
?>
</div><!-- .entry-content -->
<?php
do_action( 'stargaze_action_after_post_content' );
do_action( 'stargaze_action_after_post_data' );
?>
</article>