File "excerpt.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/themes/edufication/inc/customizer/theme-options/excerpt.php
File size: 1.6 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Excerpt options
 *
 * @package Theme Palace
 * @subpackage Edufication
 * @since Edufication 1.0.0
 */

// Add excerpt section
$wp_customize->add_section( 'edufication_excerpt_section', array(
	'title'             => esc_html__( 'Excerpt','edufication' ),
	'description'       => esc_html__( 'Excerpt section options.', 'edufication' ),
	'panel'             => 'edufication_theme_options_panel',
) );


// long Excerpt length setting and control.
$wp_customize->add_setting( 'edufication_theme_options[long_excerpt_length]', array(
	'sanitize_callback' => 'edufication_sanitize_number_range',
	'validate_callback' => 'edufication_validate_long_excerpt',
	'default'			=> $options['long_excerpt_length'],
) );

$wp_customize->add_control( 'edufication_theme_options[long_excerpt_length]', array(
	'label'       		=> esc_html__( 'Blog Page Excerpt Length', 'edufication' ),
	'description' 		=> esc_html__( 'Total words to be displayed in archive page/search page.', 'edufication' ),
	'section'     		=> 'edufication_excerpt_section',
	'type'        		=> 'number',
	'input_attrs' 		=> array(
		'style'       => 'width: 80px;',
		'max'         => 100,
		'min'         => 5,
	),
) );

// read more text setting and control
$wp_customize->add_setting( 'edufication_theme_options[read_more_text]', array(
	'sanitize_callback' => 'sanitize_text_field',
	'default'			=> $options['read_more_text'],
) );

$wp_customize->add_control( 'edufication_theme_options[read_more_text]', array(
	'label'           	=> esc_html__( 'Read More Text Label', 'edufication' ),
	'section'        	=> 'edufication_excerpt_section',
	'type'				=> 'text',
) );