| Server IP : 138.197.162.186 / Your IP : 216.73.216.17 Web Server : nginx/1.24.0 System : Linux ubuntu-s-1vcpu-512mb-10gb-tor1 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/yogaensalada-site/wp-content/themes/yugen/template-parts/page/ |
Upload File : |
<?php
/**
* Template part for displaying page content in page.php
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package yugen
*/
$header_elements = get_theme_mod( 'yugen_page_content_header_elements_order', array('page-thumbnail','page-title') );
$header_class = array( 'entry-header d-flex flex-wrap align-items-center' );
$header_class[] = 'text-left';
$content_class = array( 'entry-content mt-80' );
$content_class[] = 'text-left';
if ( yugen_has_secondary_content_class() == 'full-width' ) {
$content_class[] = 'col-count-xxl-2 col-gap-xxl-96';
}
$footer_class = array( 'entry-footer d-flex flex-wrap align-items-center mt-80' );
$footer_class[] = 'text-left'; ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="<?php echo esc_attr( implode( ' ', $header_class ) ); ?>">
<?php if ( !empty( $header_elements ) ) :
foreach ( $header_elements as $header_key => $header_element ) :
if ( $header_element == 'page-thumbnail' && has_post_thumbnail() ) :
$image_size = 'yugen-1200-16x9';
if ( yugen_has_secondary_content_class() == 'full-width' ) {
$image_size = 'yugen-1800-16x9';
} ?>
<figure class="post-featured-image post-thumbnail">
<?php the_post_thumbnail( $image_size, array(
'alt' => the_title_attribute( array(
'echo' => false,
) ),
) ); ?>
</figure>
<?php
elseif ( $header_element == 'page-title' ) :
the_title( '<h1 class="entry-title w-100 mt-64">', '</h1>' );
endif;
endforeach;
endif; ?>
</header><!-- .entry-header -->
<div class="<?php echo esc_attr( implode( ' ', $content_class ) ); ?>">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links d-flex flex-wrap align-items-center py-24">' . esc_html__( 'Pages:', 'yugen' ),
'after' => '</div>',
'link_before' => '<span class="page-number">',
'link_after' => '</span>',
) );
?>
</div><!-- .entry-content -->
<footer class="<?php echo esc_attr( implode( ' ', $footer_class ) ); ?>">
<?php
// 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;
if ( get_edit_post_link() ) :
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit <span class="screen-reader-text">%s</span>', 'yugen' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'<span class="edit-link">',
'</span>'
);
endif;
?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->