• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Genesis Theme Framework a2z

Genesis Theme Framework a2z

WordPress Dynamic API Reference

  • Home
  • Plugins
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / Parsed Source / Parsed: 49226
<?php

/**
 * Genesis Framework.
 *
 * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
 * Please do all modifications in the form of a child theme.
 *
 * @package Genesis\Customizer\SEO Settings
 * @author  StudioPress
 * @license GPL-2.0-or-later
 * @link    https://my.studiopress.com/themes/genesis/
 */


/**
 * The config array for setting up a Customizer panel, sections within that panel, settings and controls.
 *
 * If child theme contains a `customizer-seo-settings.php` config, it will be used instead of this config.
 *
 * @since 2.6.0
 */
return [
  'genesis-seo' => [
    'active_callback' => 'genesis_seo_active',
    'title'           => __( 'Theme SEO Settings', 'genesis' ),
    'description'     => __( 'Customize the various theme SEO settings.', 'genesis' ),
    'settings_field'  => 'genesis-seo-settings',
    'control_prefix'  => 'genesis-seo',
    'theme_supports'  => 'genesis-customizer-seo-settings',
    'sections'        => [
      'genesis_seo_doctitle'   => [
        'title'    => __( 'Document Title', 'genesis' ),
        'panel'    => 'genesis-seo',
        'controls' => [
          'append_site_title'    => [
            'label'    => __( 'Add site name to document title on inner pages? ', 'genesis' ),
            'section'  => 'genesis_seo_doctitle',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'doctitle_sep'         => [
            'label'       => __( 'Document Title Separator', 'genesis' ),
            'description' => __( 'If the title consists of two parts (original title and optional addition), then the separator will go in between them.', 'genesis' ),
            'section'     => 'genesis_seo_doctitle',
            'type'        => 'text',
            'settings'    => [
              'default' => '-',
            ],
          ],
          'doctitle_seplocation' => [
            'label'       => __( 'Document Title Order', 'genesis' ),
            'description' => __( 'Determines which side the added title text will go on.', 'genesis' ),
            'section'     => 'genesis_seo_doctitle',
            'type'        => 'select',
            'choices'     => [
              'left'  => __( 'Additions on left', 'genesis' ),
              'right' => __( 'Additions on right', 'genesis' ),
            ],
            'settings'    => [
              'default' => 'right',
            ],
          ],
        ],
      ],
      'genesis_seo_homepage'   => [
        'title'    => __( 'Homepage', 'genesis' ),
        'panel'    => 'genesis-seo',
        'controls' => [
          'home_h1_on'              => [
            'label'    => __( 'Primary Title H1', 'genesis' ),
            'section'  => 'genesis_seo_homepage',
            'type'     => 'radio',
            'choices'  => [
              'title'       => __( 'Site Title', 'genesis' ),
              'description' => __( 'Site Description (tagline)', 'genesis' ),
              'neither'     => __( 'None', 'genesis' ),
            ],
            'settings' => [
              'default' => 'title',
            ],
          ],
          'home_doctitle'           => [
            'label'       => __( 'Homepage Document Title', 'genesis' ),
            'description' => __( 'If you leave the document title field blank, your site’s title will be used instead.', 'genesis' ),
            'section'     => 'genesis_seo_homepage',
            'type'        => 'text',
            'settings'    => [
              'default' => '',
            ],
          ],
          'append_description_home' => [
            'label'    => __( 'Add site description (tagline) to document title on home page? ', 'genesis' ),
            'section'  => 'genesis_seo_homepage',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'home_description'        => [
            'label'       => __( 'Meta Description', 'genesis' ),
            'description' => __( 'The meta description can be used to determine the text used under the title on search engine results pages.', 'genesis' ),
            'section'     => 'genesis_seo_homepage',
            'type'        => 'textarea',
            'settings'    => [
              'default' => '',
            ],
          ],
          'home_keywords'           => [
            'label'       => __( 'Meta Keywords', 'genesis' ),
            'description' => __( 'Keywords are generally ignored by Search Engines.', 'genesis' ),
            'section'     => 'genesis_seo_homepage',
            'type'        => 'text',
            'settings'    => [
              'default' => '',
            ],
          ],
          'home_noindex'            => [
            'label'    => __( 'Apply noindex to the homepage', 'genesis' ),
            'section'  => 'genesis_seo_homepage',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'home_nofollow'           => [
            'label'    => __( 'Apply nofollow to the homepage', 'genesis' ),
            'section'  => 'genesis_seo_homepage',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'home_noarchive'          => [
            'label'    => __( 'Apply noarchive to the homepage', 'genesis' ),
            'section'  => 'genesis_seo_homepage',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
        ],
      ],
      'genesis_seo_dochead'    => [
        'title'       => __( 'Document Head', 'genesis' ),
        'description' => __( 'By default, WordPress places several tags in your document title. Most of these tags are completely unnecessary, and provide no SEO value whatsoever; they just make your site slower to load. Choose which tags you would like included in your document title. If you do not know what something is, leave it unchecked.', 'genesis' ),
        'panel'       => 'genesis-seo',
        'controls'    => [
          'head_adjacent_posts_rel_link' => [
            'label'    => __( 'Adjacent Posts rel link tags', 'genesis' ),
            'section'  => 'genesis_seo_dochead',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'head_wlwmanifest_link'        => [
            'label'    => __( 'Include Windows Live Writer Support Tag?', 'genesis' ),
            'section'  => 'genesis_seo_dochead',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'head_shortlink'               => [
            'label'    => __( 'Include Shortlink Tag?', 'genesis' ),
            'section'  => 'genesis_seo_dochead',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
        ],
      ],
      'genesis_seo_indexing'   => [
        'title'       => __( 'Indexing', 'genesis' ),
        'description' => __( 'Apply noindex to the archive pages below.', 'genesis' ),
        'panel'       => 'genesis-seo',
        'controls'    => [
          'noindex_cat_archive'    => [
            'label'    => __( 'Category Archives', 'genesis' ),
            'section'  => 'genesis_seo_indexing',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 1,
            ],
          ],
          'noindex_tag_archive'    => [
            'label'    => __( 'Tag Archives', 'genesis' ),
            'section'  => 'genesis_seo_indexing',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 1,
            ],
          ],
          'noindex_author_archive' => [
            'label'    => __( 'Author Archives', 'genesis' ),
            'section'  => 'genesis_seo_indexing',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 1,
            ],
          ],
          'noindex_date_archive'   => [
            'label'    => __( 'Date Archives', 'genesis' ),
            'section'  => 'genesis_seo_indexing',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 1,
            ],
          ],
          'noindex_search_archive' => [
            'label'    => __( 'Search Results', 'genesis' ),
            'section'  => 'genesis_seo_indexing',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 1,
            ],
          ],
        ],
      ],
      'genesis_seo_archiving'  => [
        'title'       => __( 'Archiving', 'genesis' ),
        'description' => __( 'Apply noarchive to the pages below.', 'genesis' ),
        'panel'       => 'genesis-seo',
        'controls'    => [
          'noarchive'                => [
            'label'    => __( 'Entire Site', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'noarchive_cat_archive'    => [
            'label'    => __( 'Category Archives', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'noarchive_tag_archive'    => [
            'label'    => __( 'Tag Archives', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'noarchive_author_archive' => [
            'label'    => __( 'Author Archives', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'noarchive_date_archive'   => [
            'label'    => __( 'Date Archives', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
          'noarchive_search_archive' => [
            'label'    => __( 'Search Results', 'genesis' ),
            'section'  => 'genesis_seo_archiving',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
        ],
      ],
      'genesis_seo_open_graph' => [
        'title'           => __( 'Open Graph', 'genesis' ),
        'description'     => __( 'Enable Open Graph to output tags that help social networks display images and page information when sharing your content.', 'genesis' ),
        'active_callback' => 'genesis_open_graph_available',
        'panel'           => 'genesis-seo',
        'controls'        => [
          'open_graph' => [
            'label'    => __( 'Enable Open Graph', 'genesis' ),
            'section'  => 'genesis_seo_open_graph',
            'type'     => 'checkbox',
            'settings' => [
              'default' => 0,
            ],
          ],
        ],
      ],
    ],
  ],
];
 

Published: 25th November 2019 | Last updated: 25th November 2019

Primary Sidebar

Information

Source ref: config/customizer-seo-settings.php
Parse count / Source file date: 1574704766
MD5 hash: e5c060cc934f477386d86b71eb4adc05

Footer

Genesis a2z
Genesis Theme Framework a2z
WordPress Dynamic API Reference
WordPress 5.9.3
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  genesis.wp-a2z.org
© Copyright Genesis a2z 2014-2022. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites