Property changes on: plugins
___________________________________________________________________
Added: svn:externals
## -0,0 +1,9 ##
+akismet https://plugins.svn.wordpress.org/akismet/trunk
+bbpress https://plugins.svn.wordpress.org/bbpress/trunk
+debug-bar https://plugins.svn.wordpress.org/debug-bar/trunk
+debug-bar-cron https://plugins.svn.wordpress.org/debug-bar-cron/trunk
+email-post-changes https://plugins.svn.wordpress.org/email-post-changes/trunk
+speakerdeck-embed https://plugins.svn.wordpress.org/speakerdeck-embed/trunk
+supportflow https://plugins.svn.wordpress.org/supportflow/trunk
+syntaxhighlighter https://plugins.svn.wordpress.org/syntaxhighlighter/trunk
+wordpress-importer https://plugins.svn.wordpress.org/wordpress-importer/trunk
|
|
|
101 | 101 | |
102 | 102 | add_filter( 'wp_parser_skip_duplicate_hooks', '__return_true' ); |
103 | 103 | |
| 104 | add_theme_support( 'title-tag'); |
| 105 | add_filter( 'document_title_separator', __NAMESPACE__ . '\\theme_title_separator',10,2); |
104 | 106 | } |
105 | 107 | |
106 | 108 | /** |
… |
… |
|
277 | 279 | add_meta_box( 'commentsdiv', __( 'User Contributed Notes', 'wporg' ), 'post_comment_meta_box', $post_type, 'normal', 'high' ); |
278 | 280 | } |
279 | 281 | } |
| 282 | |
| 283 | /** |
| 284 | * Adds a title seperator to page titles |
| 285 | */ |
| 286 | function theme_title_separator(){ |
| 287 | return '|'; |
| 288 | } |