$prepend Text displayed before the post title. * Default 'Private: %s'. * @param WP_Post $post Current post object. */ $private_title_format = (string) \apply_filters( 'private_title_format', /* translators: %s: Private post title. */ \__( 'Private: %s', 'default' ), $post, ), $title, ); } return $title; } /** * Generates front page title. * * This is an alias of get_blogname(). The difference is that this is used for * the front-page title output solely, whereas the other one has a mixed usage. * * @since 5.0.0 * * @return string The generated front page title. */ public static function get_front_page_title() { return Sanitize::metadata_content( Data\Blog::get_public_blog_name() ); } /** * Returns the custom blogname from option or bloginfo. * * This is an alias of get_blogname(). The difference is that this is used for * the title additions output solely, whereas the other one has a mixed usage. * * @since 5.0.0 * * @return string The trimmed tagline. */ public static function get_addition() { return Sanitize::metadata_content( Data\Blog::get_public_blog_name() ); } /** * Returns the custom homepage additions (tagline) from option or bloginfo, when set. * Memoizes the return value. * * @since 2.6.0 * @since 5.0.0 Moved from `\The_SEO_Framework\Load`. * * @return string The trimmed tagline. */ public static function get_addition_for_front_page() { return memo() ?? memo( Sanitize::metadata_content( coalesce_strlen( Data\Plugin::get_option( 'homepage_title_tagline' ) ) ?? Data\Blog::get_filtered_blog_description() ) ); } /** * Returns title separator location. * * @since 2.6.0 * @since 5.0.0 Moved from `\The_SEO_Framework\Load`. * * @return string The separator location. */ public static function get_addition_location() { return Data\Plugin::get_option( 'title_location' ); } /** * Returns title separator location for the front page. * * @since 2.6.0 * @since 5.0.0 Moved from `\The_SEO_Framework\Load`. * * @return string The Seplocation for the front page. */ public static function get_addition_location_for_front_page() { return Data\Plugin::get_option( 'home_title_location' ); } /** * Gets Title Separator. * Memoizes the return value. * * @since 2.6.0 * @since 5.0.0 Moved from `\The_SEO_Framework\Load`. * * @return string The Separator. */ public static function get_separator() { /** * @since 2.3.9 * @param string $eparator The title separator */ return memo() ?? memo( (string) \apply_filters( 'the_seo_framework_title_separator', Title\Utils::get_separator_list()[ Data\Plugin::get_option( 'title_separator' ) ] ?? '-', ) ); } }
Fatal error: Uncaught Error: Class 'The_SEO_Framework\Meta\Title' not found in /home/clickporn/porn-blog.xyz/wp-content/plugins/autodescription/inc/classes/front/title.class.php:106 Stack trace: #0 /home/clickporn/porn-blog.xyz/wp-includes/class-wp-hook.php(324): The_SEO_Framework\Front\Title::set_document_title('') #1 /home/clickporn/porn-blog.xyz/wp-includes/plugin.php(205): WP_Hook->apply_filters('', Array) #2 /home/clickporn/porn-blog.xyz/wp-includes/general-template.php(1178): apply_filters('pre_get_documen...', '') #3 /home/clickporn/porn-blog.xyz/wp-includes/general-template.php(1302): wp_get_document_title() #4 /home/clickporn/porn-blog.xyz/wp-includes/class-wp-hook.php(324): _wp_render_title_tag('') #5 /home/clickporn/porn-blog.xyz/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #6 /home/clickporn/porn-blog.xyz/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #7 /home/clickporn/porn-blog.xyz/wp-includes/general-template.php(3052): do_action('wp_head') #8 /home/clickporn/porn-blog.xyz in /home/clickporn/porn-blog.xyz/wp-content/plugins/autodescription/inc/classes/front/title.class.php on line 106
WordPress › Error

There has been a critical error on this website.

Learn more about troubleshooting WordPress.