Making WordPress.org


Ignore:
Timestamp:
06/09/2018 12:01:40 AM (7 years ago)
Author:
obenland
Message:

WPorg: Update document title separator.

See #3539.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg/functions.php

    r7073 r7287  
    7575
    7676/**
     77 * Set the separator for the document title.
     78 *
     79 * @return string Document title separator.
     80 */
     81function document_title_separator() {
     82    return '|';
     83}
     84add_filter( 'document_title_separator', __NAMESPACE__ . '\document_title_separator' );
     85
     86/**
    7787 * Set the content width in pixels, based on the theme's design and stylesheet.
    7888 *
Note: See TracChangeset for help on using the changeset viewer.