the_content();
вставляет пустые до и после моей галереи. Решить проблему я смог добавив вот этот код remove_filter('the_content', 'wpautop');
и в итоге получилось такое:<?php
global $post;
$post_id = 164;
$post = get_post($post_id);
setup_postdata($post);
remove_filter('the_content', 'wpautop');
?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php wp_reset_query(); ?>
slidesToShow: 1
$wp_customize->add_section(
'theme_option', // id секции
array(
'title' => __('Theme Options', "interia"),
'priority' => 1
)
);
if ( get_pages() ) {
$wp_customize->add_setting( 'mainpage', array(
'type' => 'option',
'capability' => 'manage_options',
) );
$wp_customize->add_control( 'mainpage', array(
'label' => __( 'Main page', "interia" ),
'section' => 'theme_option',
'type' => 'dropdown-pages',
) );
}