Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
edufication
/
inc
/
customizer
/
theme-options
:
excerpt.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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', ) );