Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

BBP_Admin::screen_header()

Output the shared screen header for about_screen() & credits_screen()


Description Description

Contains title, subtitle, and badge area


Source Source

File: includes/admin/classes/class-bbp-admin.php

	private function screen_header() {
		list( $display_version ) = explode( '-', bbp_get_version() ); ?>

		<h1 class="wp-heading-inline"><?php printf( esc_html__( 'Welcome to bbPress %s', 'bbpress' ), $display_version ); ?></h1>
		<hr class="wp-header-end">
		<div class="about-text"><?php printf( esc_html__( 'bbPress is fun to use, contains no artificial colors or preservatives, and is absolutely wonderful in every environment. Your community is going to love using it.', 'bbpress' ), $display_version ); ?></div>

		<span class="bbp-hive" id="bbp-hive"></span>
		<div class="bbp-badge" id="bbp-badge">
			<span class="bbp-bee" id="bbp-bee"></span>
		</div>

		<?php
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.