| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/gessing.es/wp-content/themes/advtheme/ |
Upload File : |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package ADVtheme
*/
get_header();
?>
<?php if ( is_active_sidebar( 'cabecera-pagina' ) ) : ?>
<div id="cabecera-pagina">
<?php dynamic_sidebar( 'cabecera-pagina' ); ?>
</div>
<?php endif; ?>
<div id="cuerpo-blog" class="content-area">
<article class="cuerpo">
<main id="main" class="cuerpo-blog-izq">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() );
/*the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;*/
endwhile; // End of the loop.
?>
</main><!-- #main -->
<div class="sidebar-blog"><?php get_sidebar(); ?></div>
<div class="limpiar"></div>
</article>
</div><!-- #primary -->
<?php
get_footer();