| Server IP : 195.58.49.151 / Your IP : 216.73.217.39 Web Server : Apache/2.4.67 (Debian) mod_fcgid/2.3.9 OpenSSL/3.0.20 System : Linux hs.hsdns.ru 6.1.0-48-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.172-1 (2026-05-15) x86_64 User : antilam ( 1007) PHP Version : 8.4.22 Disable Function : system,passthru,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/antilam/web/antilam.ru/public_html/wp-content/themes/woodmart/ |
Upload File : |
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that other
* 'pages' on your WordPress site will use a different template.
*
* @package woodmart
*/
$classes = '';
$style = '';
get_header();
if ( woodmart_has_sidebar_in_page() ) {
$classes .= ' wd-grid-col';
$style .= ' style="' . woodmart_get_content_inline_style() . '"';
}
?>
<?php
if ( 'sidebar-left' === woodmart_get_page_layout() ) {
get_sidebar();
}
?>
<div class="wd-content-area site-content<?php echo esc_attr( $classes ); ?>"<?php echo wp_kses( $style, true ); ?>>
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'entry-content' ); ?>>
<?php echo woodmart_get_the_content(); //phpcs:ignore ?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'woodmart' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
)
);
?>
<?php woodmart_entry_meta(); ?>
</article>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( woodmart_get_opt( 'page_comments' ) && ( comments_open() || get_comments_number() ) ) :
comments_template();
endif;
?>
<?php endwhile; ?>
</div>
<?php
if ( 'sidebar-left' !== woodmart_get_page_layout() ) {
get_sidebar();
}
?>
<?php get_footer(); ?>