Changeset 58
- Timestamp:
- 07/28/2013 08:58:09 PM (12 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/functions.php
r57 r58 24 24 } 25 25 26 add_filter( 'wp_title', 'wporg_p2_head_wp_title', 10, 2 ); 27 function wporg_p2_head_wp_title( $title, $sep ) { 28 $out = $title; 29 $out .= ' ' . get_bloginfo( 'name' ); 30 31 return $out; 32 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/header.php
r8 r58 1 1 <?php 2 2 global $pagetitle; 3 $pagetitle = wp_title( '«', false, 'right' ) . ' ' . get_bloginfo( 'name' );3 $pagetitle = wp_title( '«', false, 'right' ); 4 4 require WPORGPATH . 'header.php'; 5 5 ?>
Note: See TracChangeset
for help on using the changeset viewer.