Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: post.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__( 'Post Settings', 'koncrete' ), 'id' => 'post_settings_section', 'icon' => 'el el-file-edit', 'heading' => '', 'fields' => array( array( 'id' => 'post_date', 'type' => 'switch', 'title' => esc_html__( 'Display Post Date', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'post_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' => 'post_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' => 'post_cats', 'type' => 'switch', 'title' => esc_html__( 'Display Categories', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'post_tags', 'type' => 'switch', 'title' => esc_html__( 'Display Tags', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'post_social', 'type' => 'switch', 'title' => esc_html__( 'Display Social Sharing', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), array( 'id' => 'post_share', 'type' => 'checkbox', 'class' => 'redux-custom-inline', 'title' => esc_html__( 'Social Sharing Icons', 'koncrete'), 'options' => array( 'facebook' => 'Facebook', 'twitter' => 'Twitter', 'gplus' => 'Google Plus', 'linkedin' => 'Linkedin', 'pinterest' => 'Pinterest', 'tumblr' => 'Tumblr', 'reddit' => 'Reddit', 'vk' => 'Vk', ), 'default' => array( 'facebook' => '1', 'twitter' => '1', 'gplus' => '1', 'linkedin' => '1', 'pinterest' => '1', 'tumblr' => '0', 'reddit' => '0', 'vk' => '0', ), 'required' => array( 'post_social', '=', true ) ), array( 'id' => 'post_about_author', 'type' => 'switch', 'title' => esc_html__( 'Display About Author', 'koncrete' ), 'on' => esc_html__( 'On', 'koncrete' ), 'off' => esc_html__( 'Off', 'koncrete' ), 'default' => true, ), ) ) );
Save
Cancel