File "pagina.php"

Full Path: /home/concvitk/public_html/wp-content/themes/conceptualizate/template-parts/pagina.php
File size: 484 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
    while( have_posts() ) : the_post();

    the_title('<h1 class="text-center text-primary">', '</h1>');
    if ( is_page('politica-privacidad') ) { ?>
        <p class="police-date">Fecha de actualización: <?php echo esc_html(the_modified_date()); ?></p>
        <?php
    }

    if( has_post_thumbnail() ) {
        the_post_thumbnail('full', $args = array(
            'class' => 'featured-image',
        ));
    }

    the_content();

    endwhile;

?>