You appear to be a bot. Output may be restricted
Description
Deprecated. Wraps the page title in a title
element.
Only applies, if not currently in admin, or for a feed.
Usage
$string = genesis_doctitle_wrap( $title );
Parameters
- $title
- ( string ) required – Page title.
Returns
string Plain text title if feed or WP admin, or title in HTML markup.
Source
File name: genesis/lib/functions/deprecated.php
Lines:
1 to 8 of 8
function genesis_doctitle_wrap( $title ) { _deprecated_function( __FUNCTION__, '2.1.0' ); return is_feed() || is_admin() ? $title : sprintf( "<title>%s</title>\n", $title ); }