You appear to be a bot. Output may be restricted
Description
Get title parts for root page.
Usage
$array = Genesis_SEO_Document_Title_Parts::get_root_page_title_parts();
Parameters
Returns
array Document title parts.
Source
File name: genesis/lib/classes/class-genesis-seo-document-title-parts.php
Lines:
1 to 15 of 15
public function get_root_page_title_parts() { $home_doctitle = genesis_get_seo_option( 'home_doctitle' ); $append_description = genesis_get_seo_option( 'append_description_home' ); $this->parts[ self::TITLE ] = $home_doctitle ?: $this->parts[ self::TITLE ]; if ( ! $append_description ) { unset( $this->parts[ self::TAGLINE ] ); } return $this->parts; }