Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: blog.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; Redux::setSection( $opt_name, array( 'title' => esc_html__( 'Blog Settings', 'koncrete' ), 'id' => 'blog_settings_section', 'icon' => 'el el-tags', 'heading' => '', 'fields' => array( array( 'id' => 'blog_date', 'type' => 'switch', 'title' => esc_html__( 'Display Date', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'blog_author_name', 'type' => 'switch', 'title' => esc_html__( 'Display Author Name', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'blog_comment_num', 'type' => 'switch', 'title' => esc_html__( 'Display Comment Number', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'blog_cats', 'type' => 'switch', 'title' => esc_html__( 'Display Categories', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'blog_read_more_text', 'type' => 'text', 'title' => esc_html__( 'Blog ', 'koncrete' ), 'title' => esc_html__( 'Read more text for blog archive page', 'koncrete' ), 'default' => 'Continue Reading', ), ) ) );
Save
Cancel