hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-content/themes/blogvi/inc/customizer/settings/ |
<?php
add_filter( 'bloglo_customizer_options', 'bloglo_customizer_blog_options', 11 );
function bloglo_customizer_blog_options( array $options ) {
// Layout.
$options['setting']['bloglo_blog_layout'] = array(
'transport' => 'refresh',
'sanitize_callback' => 'bloglo_sanitize_select',
'control' => array(
'type' => 'bloglo-select',
'label' => esc_html__( 'Layout', 'blogvi' ),
'description' => esc_html__( 'Choose blog layout. This will affect blog layout on archives, search results and posts page.', 'blogvi' ),
'section' => 'bloglo_section_blog_page',
'choices' => array(
'blog-horizontal' => esc_html__( 'Horizontal', 'blogvi' ),
),
),
);
return $options;
}