Title how does page no work in Twenty Eleven
OK, so… sprintf( __( ‘Page %s’, ‘twentyten’ ), max( $paged, $page ) ); First off – sprintf. Returns a formatted string, using variables and a type specifier to display information. For example, $house = “Mansion”; $house_number = 49; sprintf( ‘My house is a %s and its number is %d’, $house, $house_number ); Will print My … Read more